diff --git a/resources/simplemaps-snapshot/city-db-creator/.gitignore b/resources/simplemaps-snapshot/city-db-creator/.gitignore new file mode 100644 index 00000000..b1dff0dd --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/.gitignore @@ -0,0 +1,45 @@ +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Kotlin ### +.kotlin + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/build.gradle.kts b/resources/simplemaps-snapshot/city-db-creator/build.gradle.kts new file mode 100644 index 00000000..9a8828a6 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/build.gradle.kts @@ -0,0 +1,33 @@ +plugins { + kotlin("jvm") version "2.0.21" +} + +group = "dev.hossain.citydb" +version = "1.0-SNAPSHOT" + +repositories { + google() + mavenCentral() +} + + +dependencies { + // https://developer.android.com/kotlin/multiplatform/sqlite + // https://mvnrepository.com/artifact/androidx.sqlite/sqlite-bundled + // https://developer.android.com/jetpack/androidx/releases/sqlite#2.5.0-alpha12 + val sqliteVersion = "2.5.0-alpha12" + + // androidx.sqlite:sqlite-bundled + implementation("androidx.sqlite:sqlite-bundled:$sqliteVersion") + + // https://github.com/jsoizo/kotlin-csv + implementation("com.jsoizo:kotlin-csv-jvm:1.10.0") + + + testImplementation(kotlin("test")) +} + + +tasks.test { + useJUnitPlatform() +} \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/db/.keepme b/resources/simplemaps-snapshot/city-db-creator/db/.keepme new file mode 100644 index 00000000..e69de29b diff --git a/resources/simplemaps-snapshot/city-db-creator/db/todos.db b/resources/simplemaps-snapshot/city-db-creator/db/todos.db new file mode 100644 index 00000000..00b10fb1 Binary files /dev/null and b/resources/simplemaps-snapshot/city-db-creator/db/todos.db differ diff --git a/resources/simplemaps-snapshot/city-db-creator/gradle.properties b/resources/simplemaps-snapshot/city-db-creator/gradle.properties new file mode 100644 index 00000000..0b9ec827 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/gradle.properties @@ -0,0 +1,2 @@ +kotlin.code.style=official +kotlin.jvm.target.validation.mode=IGNORE diff --git a/resources/simplemaps-snapshot/city-db-creator/gradle/wrapper/gradle-wrapper.jar b/resources/simplemaps-snapshot/city-db-creator/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000..249e5832 Binary files /dev/null and b/resources/simplemaps-snapshot/city-db-creator/gradle/wrapper/gradle-wrapper.jar differ diff --git a/resources/simplemaps-snapshot/city-db-creator/gradle/wrapper/gradle-wrapper.properties b/resources/simplemaps-snapshot/city-db-creator/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..eaabc982 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Sun Jan 12 20:26:59 EST 2025 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/resources/simplemaps-snapshot/city-db-creator/gradlew b/resources/simplemaps-snapshot/city-db-creator/gradlew new file mode 100755 index 00000000..1b6c7873 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/resources/simplemaps-snapshot/city-db-creator/gradlew.bat b/resources/simplemaps-snapshot/city-db-creator/gradlew.bat new file mode 100644 index 00000000..ac1b06f9 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/resources/simplemaps-snapshot/city-db-creator/settings.gradle.kts b/resources/simplemaps-snapshot/city-db-creator/settings.gradle.kts new file mode 100644 index 00000000..b569eeb1 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/settings.gradle.kts @@ -0,0 +1,2 @@ +rootProject.name = "city-db-creator" + diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/CheckCanadianCities.kt b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/CheckCanadianCities.kt new file mode 100644 index 00000000..66bf37f8 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/CheckCanadianCities.kt @@ -0,0 +1,145 @@ +package dev.hossain.citydb + +import androidx.sqlite.driver.bundled.BundledSQLiteDriver +import androidx.sqlite.use +import com.github.doyaaaaaken.kotlincsv.dsl.csvReader +import dev.hossain.citydb.config.* +import java.io.File +import kotlin.time.measureTime + +/** + * Checks if the Canadian cities are in the database. + */ +fun main() { + val elapsed = measureTime { + //executeCityMatch() + debugCityMatching() + } + + // debugCityMatching - Time elapsed: 3.672165291s + // executeCityMatch- Time elapsed: 3.711421833s + println("Time elapsed: $elapsed") +} + + +private fun debugCityMatching() { + val outputFile = File(CANADA_CITIES_MATCHED_REPORT) + val databaseConnection = BundledSQLiteDriver().open(DB_FILE_NAME_ALERT_APP) + outputFile.bufferedWriter().use { writer -> + val countSql = "SELECT COUNT(*) FROM $DB_TABLE_NAME_CITIES WHERE 1" + databaseConnection.prepare(countSql).use { stmt -> + while (stmt.step()) { + writer.write("Total DB records: ${stmt.getText(0)}\n\n") + } + } + + val canadianCities = getCanadianCities() + canadianCities.forEach { csvCity -> + val citySql = """ + SELECT * FROM $DB_TABLE_NAME_CITIES + WHERE city_ascii = '${escapeSingleQuote(csvCity["city_ascii"]!!)}' AND iso3 = '$CANADA_COUNTRY_CODE' + """.trimIndent() + + var didFindMatch = false + databaseConnection.prepare(citySql).use { stmt -> + while (stmt.step()) { + val city = stmt.getText(1) + val lat = stmt.getDouble(2) + val lng = stmt.getDouble(3) + val province = stmt.getText(7) + val country = stmt.getText(6) + + writer.write(""" + CSV City: ${csvCity["city"]}, ${csvCity["province_name"]} ${csvCity["lat"]} ${csvCity["lng"]} matched with DB + City: $city, state: $province, Lat: $lat, Lng: $lng, Country: $country (Matches - province: ${province == csvCity["province_name"]} lat: ${lat == csvCity["lat"]?.toDouble()} lng: ${lng == csvCity["lng"]?.toDouble()}) + - - - - - - - - - - - - - - - - - - - - - - - - + """.trimIndent() + "\n") + + didFindMatch = true + } + } + if(didFindMatch) { + writer.write("\n\n ================= END CITY MATCH ================= \n\n") + } + } + } + databaseConnection.close() +} + + +private fun executeCityMatch() { + val databaseConnection = BundledSQLiteDriver().open(DB_FILE_NAME_ALERT_APP) + val countSql = "SELECT COUNT(*) FROM $DB_TABLE_NAME_CITIES WHERE 1" + databaseConnection.prepare(countSql).use { stmt -> + while (stmt.step()) { + println("Total records: ${stmt.getText(0)}") + } + } + + val canadianCities = getCanadianCities() + val totalCanadianCities = canadianCities.size + var totalMatches = 0 + // For each canadian city, check if it exists in the cities table + canadianCities.forEach { city -> + val citySql = """ + SELECT COUNT(*) FROM $DB_TABLE_NAME_CITIES + WHERE city_ascii = '${escapeSingleQuote(city["city_ascii"]!!)}' AND iso3 = '$CANADA_COUNTRY_CODE' + """.trimIndent() + + databaseConnection.prepare(citySql).use { stmt -> + //stmt.bindText(1, city["city_ascii"]!!) + while (stmt.step()) { + if (stmt.getText(0).toInt() > 0) { + totalMatches++ + } + println("City: ${city["city"]}, Province: ${city["province_id"]} - Count: ${stmt.getText(0)}") + } + } + } + + println("Total Canadian cities: $totalCanadianCities and matches: $totalMatches") + + databaseConnection.close() +} + +/** + * Loads Canadian cities from CSV file. + * + * ```csv + * "city","city_ascii","province_id","province_name","lat","lng","population","density","timezone","ranking","postal","id" + * "Hamilton","Hamilton","ON","Ontario","43.2567","-79.8692","729560","509.1","America/Toronto","2","L0R L0P L8W L8V L8T L8S L8R L8P L8G L8E L8B L8N L8M L8L L8K L8J L8H L9G L9A L9B L9C L9H L9K N1R","1124567288" + * "Mississauga","Mississauga","ON","Ontario","43.6000","-79.6500","717961","2452.5","America/Toronto","2","L4W L4V L4T L4Z L4Y L4X L5R L5S L5T L5V L5W L5A L5B L5C L5E L5G L5H L5J L5K L5L L5M L5N","1124112672" + * "Brampton","Brampton","ON","Ontario","43.6833","-79.7667","656480","2469.0","America/Toronto","2","L7A L6T L6W L6V L6P L6S L6R L6Y L6X L6Z","1124625989" + * "Surrey","Surrey","BC","British Columbia","49.1900","-122.8489","568322","1797.9","America/Vancouver","2","V4A V4N V4P V3R V3S V3W V3T V3V V3X V3Z","1124001454" + * "Kitchener","Kitchener","ON","Ontario","43.4186","-80.4728","522888","1877.6","America/Toronto","1","N2K N2H N2N N2M N2C N2B N2A N2G N2E N2R N2P","1124158530" + * ``` + */ +private fun loadCanadianCities() { + csvReader().open(CSV_CANADIAN_CITIES) { + /* + * Provides data like: + * + * row = {LinkedHashMap@1495} size = 12 + * "city" -> "Toronto" + * "city_ascii" -> "Toronto" + * "province_id" -> "ON" + * "province_name" -> "Ontario" + * "lat" -> "43.7417" + * "lng" -> "-79.3733" + * "population" -> "5647656" + * "density" -> "4427.8" + * "timezone" -> "America/Toronto" + * "ranking" -> "1" + * "postal" -> "M5T M5V M5P M5S M5R M5E" + * "id" -> "1124279679" + */ + readAllWithHeaderAsSequence().forEach { row: Map -> + println(row) + } + } +} + +private fun getCanadianCities(): List> { + val file: File = File(CSV_CANADIAN_CITIES) + return csvReader().readAllWithHeader(file) +} \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/CheckUsaCities.kt b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/CheckUsaCities.kt new file mode 100644 index 00000000..bff2cbb3 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/CheckUsaCities.kt @@ -0,0 +1,153 @@ +package dev.hossain.citydb + +import androidx.sqlite.driver.bundled.BundledSQLiteDriver +import androidx.sqlite.use +import com.github.doyaaaaaken.kotlincsv.dsl.csvReader +import dev.hossain.citydb.config.* +import java.io.File +import kotlin.time.measureTime + +/** + * Checks if the USA cities are in the database. + */ +fun main() { + val elapsed = measureTime { + //loadUsaCities() + //executeCityMatching() + debugCityMatching() + } + + // executeCityMatching - Time elapsed 1m 3.469409584s + // debugCityMatching - Time elapsed: 1m 2.940418500s + println("Time elapsed: $elapsed") +} + + +private fun debugCityMatching() { + // city-db-creator/CheckUsaCities.txt + // city-db-creator/src/main/kotlin/CheckUsaCities.kt + val outputFile = File(USA_CITIES_MATCHED_REPORT) + val databaseConnection = BundledSQLiteDriver().open(DB_FILE_NAME_ALERT_APP) + outputFile.bufferedWriter().use { writer -> + val countSql = "SELECT COUNT(*) FROM $DB_TABLE_NAME_CITIES WHERE 1" + databaseConnection.prepare(countSql).use { stmt -> + while (stmt.step()) { + writer.write("Total records: ${stmt.getText(0)}\n") + } + } + + val usaCities = getUsaCities() + usaCities.forEach { csvCity -> + val citySql = """ + SELECT * FROM $DB_TABLE_NAME_CITIES + WHERE city_ascii = '${escapeSingleQuote(csvCity["city_ascii"]!!)}' AND iso3 = 'USA' + """.trimIndent() + + var didFindMatch = false + databaseConnection.prepare(citySql).use { stmt -> + while (stmt.step()) { + val city = stmt.getText(1) + val lat = stmt.getDouble(2) + val lng = stmt.getDouble(3) + val state = stmt.getText(7) + val country = stmt.getText(6) + + writer.write(""" + CSV City: ${csvCity["city"]}, ${csvCity["state_name"]} ${csvCity["lat"]} ${csvCity["lng"]} matched with DB + City: $city, state: $state, Lat: $lat, Lng: $lng, Country: $country (Matches - state: ${state == csvCity["state_name"]} lat: ${lat == csvCity["lat"]?.toDouble()} lng: ${lng == csvCity["lng"]?.toDouble()}) + - - - - - - - - - - - - - - - - - - - - - - - - + """.trimIndent() + "\n") + + didFindMatch = true + } + } + if(didFindMatch) { + writer.write("\n\n ================= END CITY MATCH ================= \n\n") + } + } + } + databaseConnection.close() +} + +private fun executeCityMatching() { + val databaseConnection = BundledSQLiteDriver().open(DB_FILE_NAME_ALERT_APP) + val countSql = "SELECT COUNT(*) FROM cities WHERE 1" + databaseConnection.prepare(countSql).use { stmt -> + while (stmt.step()) { + println("Total records: ${stmt.getText(0)}") + } + } + + val usaCities = getUsaCities() + val totalUsaCities = usaCities.size + var totalMatches = 0 + var totalMultiMatch = 0 + // For each usa city, check if it exists in the cities table + // Result: Total USA cities: 31120 and matches: 605 + usaCities.forEach { city -> + val citySql = """ + SELECT COUNT(*) FROM cities + WHERE city_ascii = '${escapeSingleQuote(city["city_ascii"]!!)}' AND iso3 = 'USA' + """.trimIndent() + + databaseConnection.prepare(citySql).use { stmt -> + //stmt.bindText(1, city["city_ascii"]!!) + while (stmt.step()) { + val matchedCount = stmt.getText(0).toInt() + if (matchedCount > 0) { + totalMatches++ + totalMultiMatch += matchedCount + } + println("City: ${city["city"]}, Province: ${city["state_name"]} - Count: ${matchedCount}") + } + } + } + + println("Total USA cities: $totalUsaCities and matches: $totalMatches with multi-match: $totalMultiMatch") + + databaseConnection.close() +} + +/** + * Loads USA cities from CSV file. + * + * ```csv + * "city","city_ascii","state_id","state_name","county_fips","county_name","lat","lng","population","density","source","military","incorporated","timezone","ranking","zips","id" + * "New York","New York","NY","New York","36081","Queens","40.6943","-73.9249","18908608","11080.3","shape","FALSE","TRUE","America/New_York","1","11229 11228 11226 11225","1840034016" + * "Los Angeles","Los Angeles","CA","California","06037","Los Angeles","34.1141","-118.4068","11922389","3184.7","shape","FALSE","TRUE","America/Los_Angeles","1","91367 90291 90293","1840020491" + * "Chicago","Chicago","IL","Illinois","17031","Cook","41.8375","-87.6866","8497759","4614.5","shape","FALSE","TRUE","America/Chicago","1","60018 60649","1840000494" + * ``` + */ +private fun loadUsaCities() { + csvReader().open(CSV_USA_CITIES) { + /* + * Provides data like: + * + * "city" -> "New York" + * "city_ascii" -> "New York" + * "state_id" -> "NY" + * "state_name" -> "New York" + * "county_fips" -> "36081" + * "county_name" -> "Queens" + * "lat" -> "40.6943" + * "lng" -> "-73.9249" + * "population" -> "18908608" + * "density" -> "11080.3" + * "source" -> "shape" + * "military" -> "FALSE" + * "incorporated" -> "TRUE" + * "timezone" -> "America/New_York" + * "ranking" -> "1" + * "zips" -> "11229 11228 11226 11225 11224 11222 ..." + * "id" -> "1840034016" + */ + readAllWithHeaderAsSequence().forEach { row: Map -> + println(row) + } + } +} + +private fun getUsaCities(): List> { + val file: File = File(CSV_USA_CITIES) + return csvReader().readAllWithHeader(file) +} \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/DbTest.kt b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/DbTest.kt new file mode 100644 index 00000000..cabc3b4a --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/DbTest.kt @@ -0,0 +1,29 @@ +package dev.hossain.citydb + +import androidx.sqlite.driver.bundled.BundledSQLiteDriver +import androidx.sqlite.execSQL +import androidx.sqlite.use +import dev.hossain.citydb.config.DB_FILE_NAME_TODO_TEST + +/** + * Source: https://developer.android.com/kotlin/multiplatform/sqlite#sqlite_driver_apis + */ +fun main() { + val databaseConnection = BundledSQLiteDriver().open(DB_FILE_NAME_TODO_TEST) + databaseConnection.execSQL( + "CREATE TABLE IF NOT EXISTS Todo (id INTEGER PRIMARY KEY, content TEXT)" + ) + databaseConnection.prepare( + "INSERT OR IGNORE INTO Todo (id, content) VALUES (? ,?)" + ).use { stmt -> + stmt.bindInt(index = 1, value = 1) + stmt.bindText(index = 2, value = "Try Room in the KMP project.") + stmt.step() + } + databaseConnection.prepare("SELECT content FROM Todo").use { stmt -> + while (stmt.step()) { + println("Action item: ${stmt.getText(0)}") + } + } + databaseConnection.close() +} \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/Main.kt b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/Main.kt new file mode 100644 index 00000000..2e3ce5ff --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/Main.kt @@ -0,0 +1,5 @@ +package dev.hossain.citydb + +fun main() { + println("Hello World!") +} \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/config/DataFiles.kt b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/config/DataFiles.kt new file mode 100644 index 00000000..11653faa --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/kotlin/config/DataFiles.kt @@ -0,0 +1,15 @@ +package dev.hossain.citydb.config + +const val USA_COUNTRY_CODE = "USA" +const val CANADA_COUNTRY_CODE = "CAN" +const val DB_FILE_NAME_TODO_TEST = "db/todos.db" +const val DB_FILE_NAME_ALERT_APP = "../alertapp.db" +const val DB_TABLE_NAME_CITIES = "cities" +const val CSV_CANADIAN_CITIES = "../simplemaps_canadacities_basic/canadacities.csv" +const val CSV_USA_CITIES = "../simplemaps_uscities_basic/uscities.csv" +const val USA_CITIES_MATCHED_REPORT = "src/main/resources/CheckUsaCities.txt" +const val CANADA_CITIES_MATCHED_REPORT = "src/main/resources/CheckCanadianCities.txt" + +fun escapeSingleQuote(input: String): String { + return input.replace("'", "''") +} \ No newline at end of file diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/resources/CheckCanadianCities.txt b/resources/simplemaps-snapshot/city-db-creator/src/main/resources/CheckCanadianCities.txt new file mode 100644 index 00000000..eb7b610d --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/resources/CheckCanadianCities.txt @@ -0,0 +1,3279 @@ +Total DB records: 47868 + +CSV City: Toronto, Ontario 43.7417 -79.3733 matched with DB +City: Toronto, state: Ontario, Lat: 43.7417, Lng: -79.3733, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montréal, Quebec 45.5089 -73.5617 matched with DB +City: Montreal, state: Quebec, Lat: 45.5089, Lng: -73.5617, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vancouver, British Columbia 49.2500 -123.1000 matched with DB +City: Vancouver, state: British Columbia, Lat: 49.25, Lng: -123.1, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calgary, Alberta 51.0500 -114.0667 matched with DB +City: Calgary, state: Alberta, Lat: 51.05, Lng: -114.0667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edmonton, Alberta 53.5344 -113.4903 matched with DB +City: Edmonton, state: Alberta, Lat: 53.5344, Lng: -113.4903, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ottawa, Ontario 45.4247 -75.6950 matched with DB +City: Ottawa, state: Ontario, Lat: 45.4247, Lng: -75.695, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winnipeg, Manitoba 49.8844 -97.1464 matched with DB +City: Winnipeg, state: Manitoba, Lat: 49.8844, Lng: -97.1464, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quebec City, Quebec 46.8139 -71.2081 matched with DB +City: Quebec City, state: Quebec, Lat: 46.8139, Lng: -71.2081, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Ontario 43.2567 -79.8692 matched with DB +City: Hamilton, state: Ontario, Lat: 43.2567, Lng: -79.8692, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mississauga, Ontario 43.6000 -79.6500 matched with DB +City: Mississauga, state: Ontario, Lat: 43.6, Lng: -79.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brampton, Ontario 43.6833 -79.7667 matched with DB +City: Brampton, state: Ontario, Lat: 43.6833, Lng: -79.7667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Surrey, British Columbia 49.1900 -122.8489 matched with DB +City: Surrey, state: British Columbia, Lat: 49.19, Lng: -122.8489, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kitchener, Ontario 43.4186 -80.4728 matched with DB +City: Kitchener, state: Ontario, Lat: 43.4186, Lng: -80.4728, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halifax, Nova Scotia 44.6475 -63.5906 matched with DB +City: Halifax, state: Nova Scotia, Lat: 44.6475, Lng: -63.5906, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laval, Quebec 45.5833 -73.7500 matched with DB +City: Laval, state: Quebec, Lat: 45.5833, Lng: -73.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: London, Ontario 42.9836 -81.2497 matched with DB +City: London, state: Ontario, Lat: 42.9836, Lng: -81.2497, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, British Columbia 48.4283 -123.3647 matched with DB +City: Victoria, state: British Columbia, Lat: 48.4283, Lng: -123.3647, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Markham, Ontario 43.8767 -79.2633 matched with DB +City: Markham, state: Ontario, Lat: 43.8767, Lng: -79.2633, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oshawa, Ontario 43.9000 -78.8500 matched with DB +City: Oshawa, state: Ontario, Lat: 43.9, Lng: -78.85, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vaughan, Ontario 43.8333 -79.5000 matched with DB +City: Vaughan, state: Ontario, Lat: 43.8333, Lng: -79.5, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Ontario 42.2833 -83.0000 matched with DB +City: Windsor, state: Ontario, Lat: 42.2833, Lng: -83.0, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gatineau, Quebec 45.4833 -75.6500 matched with DB +City: Gatineau, state: Quebec, Lat: 45.4833, Lng: -75.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saskatoon, Saskatchewan 52.1333 -106.6833 matched with DB +City: Saskatoon, state: Saskatchewan, Lat: 52.1333, Lng: -106.6833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longueuil, Quebec 45.5333 -73.5167 matched with DB +City: Longueuil, state: Quebec, Lat: 45.5333, Lng: -73.5167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burnaby, British Columbia 49.2667 -122.9667 matched with DB +City: Burnaby, state: British Columbia, Lat: 49.2667, Lng: -122.9667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Catharines, Ontario 43.1833 -79.2333 matched with DB +City: St. Catharines, state: Ontario, Lat: 43.1833, Lng: -79.2333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Regina, Saskatchewan 50.4547 -104.6067 matched with DB +City: Regina, state: Saskatchewan, Lat: 50.4547, Lng: -104.6067, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, Ontario 43.4500 -79.6833 matched with DB +City: Oakville, state: Ontario, Lat: 43.45, Lng: -79.6833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, British Columbia 49.1667 -123.1333 matched with DB +City: Richmond, state: British Columbia, Lat: 49.1667, Lng: -123.1333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond Hill, Ontario 43.8667 -79.4333 matched with DB +City: Richmond Hill, state: Ontario, Lat: 43.8667, Lng: -79.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Ontario 43.3167 -79.8000 matched with DB +City: Burlington, state: Ontario, Lat: 43.3167, Lng: -79.8, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. John's, Newfoundland and Labrador 47.4817 -52.7971 matched with DB +City: St. John's, state: Newfoundland and Labrador, Lat: 47.4817, Lng: -52.7971, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kelowna, British Columbia 49.8881 -119.4956 matched with DB +City: Kelowna, state: British Columbia, Lat: 49.8881, Lng: -119.4956, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherbrooke, Quebec 45.4000 -71.9000 matched with DB +City: Sherbrooke, state: Quebec, Lat: 45.4, Lng: -71.9, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sudbury, Ontario 46.4900 -81.0100 matched with DB +City: Sudbury, state: Ontario, Lat: 46.49, Lng: -81.01, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barrie, Ontario 44.3711 -79.6769 matched with DB +City: Barrie, state: Ontario, Lat: 44.3711, Lng: -79.6769, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abbotsford, British Columbia 49.0500 -122.3167 matched with DB +City: Abbotsford, state: British Columbia, Lat: 49.05, Lng: -122.3167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lévis, Quebec 46.8000 -71.1833 matched with DB +City: Levis, state: Quebec, Lat: 46.8, Lng: -71.1833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coquitlam, British Columbia 49.2839 -122.7919 matched with DB +City: Coquitlam, state: British Columbia, Lat: 49.2839, Lng: -122.7919, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saguenay, Quebec 48.4167 -71.0667 matched with DB +City: Saguenay, state: Quebec, Lat: 48.4167, Lng: -71.0667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guelph, Ontario 43.5500 -80.2500 matched with DB +City: Guelph, state: Ontario, Lat: 43.55, Lng: -80.25, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trois-Rivières, Quebec 46.3500 -72.5500 matched with DB +City: Trois-Rivieres, state: Quebec, Lat: 46.35, Lng: -72.55, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitby, Ontario 43.8833 -78.9417 matched with DB +City: Whitby, state: Ontario, Lat: 43.8833, Lng: -78.9417, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Ontario 43.3972 -80.3114 matched with DB +City: Cambridge, state: Ontario, Lat: 43.3972, Lng: -80.3114, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Ontario 43.5083 -79.8833 matched with DB +City: Milton, state: Ontario, Lat: 43.5083, Lng: -79.8833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ajax, Ontario 43.8583 -79.0364 matched with DB +City: Ajax, state: Ontario, Lat: 43.8583, Lng: -79.0364, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Ontario 43.4667 -80.5167 matched with DB +City: Waterloo, state: Ontario, Lat: 43.4667, Lng: -80.5167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terrebonne, Quebec 45.7000 -73.6333 matched with DB +City: Terrebonne, state: Quebec, Lat: 45.7, Lng: -73.6333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moncton, New Brunswick 46.1328 -64.7714 matched with DB +City: Moncton, state: New Brunswick, Lat: 46.1328, Lng: -64.7714, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saanich, British Columbia 48.4840 -123.3810 matched with DB +City: Saanich, state: British Columbia, Lat: 48.484, Lng: -123.381, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Rock, British Columbia 49.0250 -122.8028 matched with DB +City: White Rock, state: British Columbia, Lat: 49.025, Lng: -122.8028, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thunder Bay, Ontario 48.3822 -89.2461 matched with DB +City: Thunder Bay, state: Ontario, Lat: 48.3822, Lng: -89.2461, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, British Columbia 49.0847 -123.0586 matched with DB +City: Delta, state: British Columbia, Lat: 49.0847, Lng: -123.0586, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nanaimo, British Columbia 49.1642 -123.9364 matched with DB +City: Nanaimo, state: British Columbia, Lat: 49.1642, Lng: -123.9364, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brantford, Ontario 43.1667 -80.2500 matched with DB +City: Brantford, state: Ontario, Lat: 43.1667, Lng: -80.25, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chatham, Ontario 42.4229 -82.1324 matched with DB +City: Chatham, state: New Brunswick, Lat: 47.0443, Lng: -65.3781, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chatham, Ontario 42.4229 -82.1324 matched with DB +City: Chatham, state: Ontario, Lat: 42.4229, Lng: -82.1324, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarington, Ontario 43.9350 -78.6083 matched with DB +City: Clarington, state: Ontario, Lat: 43.935, Lng: -78.6083, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Jérôme, Quebec 45.7833 -74.0000 matched with DB +City: Saint-Jerome, state: Quebec, Lat: 45.7833, Lng: -74.0, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Deer, Alberta 52.2681 -113.8111 matched with DB +City: Red Deer, state: Alberta, Lat: 52.2681, Lng: -113.8111, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pickering, Ontario 43.8354 -79.0890 matched with DB +City: Pickering, state: Ontario, Lat: 43.8354, Lng: -79.089, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lethbridge, Alberta 49.6942 -112.8328 matched with DB +City: Lethbridge, state: Alberta, Lat: 49.6942, Lng: -112.8328, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kamloops, British Columbia 50.6761 -120.3408 matched with DB +City: Kamloops, state: British Columbia, Lat: 50.6761, Lng: -120.3408, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Jean-sur-Richelieu, Quebec 45.3167 -73.2667 matched with DB +City: Saint-Jean-sur-Richelieu, state: Quebec, Lat: 45.3167, Lng: -73.2667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niagara Falls, Ontario 43.0600 -79.1067 matched with DB +City: Niagara Falls, state: Ontario, Lat: 43.06, Lng: -79.1067, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cape Breton, Nova Scotia 46.1389 -60.1931 matched with DB +City: Cape Breton, state: Nova Scotia, Lat: 46.1389, Lng: -60.1931, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chilliwack, British Columbia 49.1577 -121.9509 matched with DB +City: Chilliwack, state: British Columbia, Lat: 49.1577, Lng: -121.9509, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brossard, Quebec 45.4667 -73.4500 matched with DB +City: Brossard, state: Quebec, Lat: 45.4667, Lng: -73.45, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maple Ridge, British Columbia 49.2167 -122.6000 matched with DB +City: Maple Ridge, state: British Columbia, Lat: 49.2167, Lng: -122.6, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newmarket, Ontario 44.0500 -79.4667 matched with DB +City: Newmarket, state: Ontario, Lat: 44.05, Lng: -79.4667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Repentigny, Quebec 45.7333 -73.4667 matched with DB +City: Repentigny, state: Quebec, Lat: 45.7333, Lng: -73.4667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peterborough, Ontario 44.3000 -78.3167 matched with DB +City: Peterborough, state: Ontario, Lat: 44.3, Lng: -78.3167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Drummondville, Quebec 45.8833 -72.4833 matched with DB +City: Drummondville, state: Quebec, Lat: 45.8833, Lng: -72.4833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kawartha Lakes, Ontario 44.3500 -78.7500 matched with DB +City: Kawartha Lakes, state: Ontario, Lat: 44.35, Lng: -78.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Westminster, British Columbia 49.2069 -122.9111 matched with DB +City: New Westminster, state: British Columbia, Lat: 49.2069, Lng: -122.9111, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prince George, British Columbia 53.9169 -122.7494 matched with DB +City: Prince George, state: British Columbia, Lat: 53.9169, Lng: -122.7494, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledon, Ontario 43.8667 -79.8667 matched with DB +City: Caledon, state: Ontario, Lat: 43.8667, Lng: -79.8667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Châteauguay, Quebec 45.3800 -73.7500 matched with DB +City: Chateauguay, state: Quebec, Lat: 45.38, Lng: -73.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Ontario 44.1667 -77.3833 matched with DB +City: Belleville, state: Ontario, Lat: 44.1667, Lng: -77.3833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Airdrie, Alberta 51.2917 -114.0144 matched with DB +City: Airdrie, state: Alberta, Lat: 51.2917, Lng: -114.0144, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sarnia, Ontario 42.9994 -82.3089 matched with DB +City: Sarnia, state: Ontario, Lat: 42.9994, Lng: -82.3089, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wood Buffalo, Alberta 57.6042 -111.3284 matched with DB +City: Wood Buffalo, state: Alberta, Lat: 57.6042, Lng: -111.3284, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sault Ste. Marie, Ontario 46.5333 -84.3500 matched with DB +City: Sault Ste. Marie, state: Ontario, Lat: 46.5333, Lng: -84.35, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint John, New Brunswick 45.2806 -66.0761 matched with DB +City: Saint John, state: New Brunswick, Lat: 45.2806, Lng: -66.0761, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Welland, Ontario 42.9833 -79.2333 matched with DB +City: Welland, state: Ontario, Lat: 42.9833, Lng: -79.2333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granby, Quebec 45.4000 -72.7333 matched with DB +City: Granby, state: Quebec, Lat: 45.4, Lng: -72.7333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Albert, Alberta 53.6303 -113.6258 matched with DB +City: St. Albert, state: Alberta, Lat: 53.6303, Lng: -113.6258, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericton, New Brunswick 45.9636 -66.6431 matched with DB +City: Fredericton, state: New Brunswick, Lat: 45.9636, Lng: -66.6431, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grande Prairie, Alberta 55.1708 -118.7947 matched with DB +City: Grande Prairie, state: Alberta, Lat: 55.1708, Lng: -118.7947, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medicine Hat, Alberta 50.0417 -110.6775 matched with DB +City: Medicine Hat, state: Alberta, Lat: 50.0417, Lng: -110.6775, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halton Hills, Ontario 43.6300 -79.9500 matched with DB +City: Halton Hills, state: Ontario, Lat: 43.63, Lng: -79.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Ontario 44.0000 -79.4667 matched with DB +City: Aurora, state: Ontario, Lat: 44.0, Lng: -79.4667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Coquitlam, British Columbia 49.2625 -122.7811 matched with DB +City: Port Coquitlam, state: British Columbia, Lat: 49.2625, Lng: -122.7811, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mirabel, Quebec 45.6500 -74.0833 matched with DB +City: Mirabel, state: Quebec, Lat: 45.65, Lng: -74.0833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blainville, Quebec 45.6700 -73.8800 matched with DB +City: Blainville, state: Quebec, Lat: 45.67, Lng: -73.88, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lac-Brome, Quebec 45.2167 -72.5167 matched with DB +City: Lac-Brome, state: Quebec, Lat: 45.2167, Lng: -72.5167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Vancouver, British Columbia 49.3201967175102 -123.069940224484 matched with DB +City: North Vancouver, state: British Columbia, Lat: 49.3202, Lng: -123.0699, Country: CAN (Matches - province: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Hyacinthe, Quebec 45.6167 -72.9500 matched with DB +City: Saint-Hyacinthe, state: Quebec, Lat: 45.6167, Lng: -72.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beloeil, Quebec 45.5667 -73.2000 matched with DB +City: Beloeil, state: Quebec, Lat: 45.5667, Lng: -73.2, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bay, Ontario 46.3000 -79.4500 matched with DB +City: North Bay, state: Ontario, Lat: 46.3, Lng: -79.45, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlottetown, Prince Edward Island 46.2403 -63.1347 matched with DB +City: Charlottetown, state: Prince Edward Island, Lat: 46.2403, Lng: -63.1347, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, British Columbia 50.2670 -119.2720 matched with DB +City: Vernon, state: British Columbia, Lat: 50.267, Lng: -119.272, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Manitoba 49.8483 -99.9500 matched with DB +City: Brandon, state: Manitoba, Lat: 49.8483, Lng: -99.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mascouche, Quebec 45.7500 -73.6000 matched with DB +City: Mascouche, state: Quebec, Lat: 45.75, Lng: -73.6, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stouffville, Ontario 43.9667 -79.2500 matched with DB +City: Stouffville, state: Ontario, Lat: 43.9667, Lng: -79.25, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shawinigan, Quebec 46.5667 -72.7500 matched with DB +City: Shawinigan, state: Quebec, Lat: 46.5667, Lng: -72.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Joliette, Quebec 46.0167 -73.4500 matched with DB +City: Joliette, state: Quebec, Lat: 46.0167, Lng: -73.45, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rimouski, Quebec 48.4500 -68.5300 matched with DB +City: Rimouski, state: Quebec, Lat: 48.45, Lng: -68.53, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Courtenay, British Columbia 49.6878 -124.9944 matched with DB +City: Courtenay, state: British Columbia, Lat: 49.6878, Lng: -124.9944, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dollard-des-Ormeaux, Quebec 45.4833 -73.8167 matched with DB +City: Dollard-des-Ormeaux, state: Quebec, Lat: 45.4833, Lng: -73.8167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cornwall, Ontario 45.0275 -74.7400 matched with DB +City: Cornwall, state: Ontario, Lat: 45.0275, Lng: -74.74, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoriaville, Quebec 46.0500 -71.9667 matched with DB +City: Victoriaville, state: Quebec, Lat: 46.05, Lng: -71.9667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgina, Ontario 44.3000 -79.4333 matched with DB +City: Georgina, state: Ontario, Lat: 44.3, Lng: -79.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Ontario 43.1306 -80.7467 matched with DB +City: Woodstock, state: Ontario, Lat: 43.1306, Lng: -80.7467, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Langford Station, British Columbia 48.4506 -123.5058 matched with DB +City: Langford Station, state: British Columbia, Lat: 48.4506, Lng: -123.5058, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quinte West, Ontario 44.1833 -77.5667 matched with DB +City: Quinte West, state: Ontario, Lat: 44.1833, Lng: -77.5667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Thomas, Ontario 42.7750 -81.1833 matched with DB +City: St. Thomas, state: Ontario, Lat: 42.775, Lng: -81.1833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Eustache, Quebec 45.5700 -73.9000 matched with DB +City: Saint-Eustache, state: Quebec, Lat: 45.57, Lng: -73.9, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Vancouver, British Columbia 49.3667 -123.1667 matched with DB +City: West Vancouver, state: British Columbia, Lat: 49.3667, Lng: -123.1667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Tecumseth, Ontario 44.0833 -79.7500 matched with DB +City: New Tecumseth, state: Ontario, Lat: 44.0833, Lng: -79.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Innisfil, Ontario 44.3000 -79.5833 matched with DB +City: Innisfil, state: Ontario, Lat: 44.3, Lng: -79.5833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vaudreuil-Dorion, Quebec 45.4000 -74.0333 matched with DB +City: Vaudreuil-Dorion, state: Quebec, Lat: 45.4, Lng: -74.0333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradford West Gwillimbury, Ontario 44.1333 -79.6333 matched with DB +City: Bradford West Gwillimbury, state: Ontario, Lat: 44.1333, Lng: -79.6333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salaberry-de-Valleyfield, Quebec 45.2500 -74.1300 matched with DB +City: Salaberry-de-Valleyfield, state: Quebec, Lat: 45.25, Lng: -74.13, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rouyn-Noranda, Quebec 48.2333 -79.0167 matched with DB +City: Rouyn-Noranda, state: Quebec, Lat: 48.2333, Lng: -79.0167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boucherville, Quebec 45.6000 -73.4500 matched with DB +City: Boucherville, state: Quebec, Lat: 45.6, Lng: -73.45, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission, British Columbia 49.1337 -122.3112 matched with DB +City: Mission, state: British Columbia, Lat: 49.1337, Lng: -122.3112, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timmins, Ontario 48.4667 -81.3333 matched with DB +City: Timmins, state: Ontario, Lat: 48.4667, Lng: -81.3333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeshore, Ontario 42.2399 -82.6511 matched with DB +City: Lakeshore, state: Ontario, Lat: 42.2399, Lng: -82.6511, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brant, Ontario 43.1167 -80.3667 matched with DB +City: Brant, state: Ontario, Lat: 43.1167, Lng: -80.3667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spruce Grove, Alberta 53.5450 -113.9008 matched with DB +City: Spruce Grove, state: Alberta, Lat: 53.545, Lng: -113.9008, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell River, British Columbia 50.0244 -125.2475 matched with DB +City: Campbell River, state: British Columbia, Lat: 50.0244, Lng: -125.2475, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prince Albert, Saskatchewan 53.2000 -105.7500 matched with DB +City: Prince Albert, state: Saskatchewan, Lat: 53.2, Lng: -105.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Penticton, British Columbia 49.4911 -119.5886 matched with DB +City: Penticton, state: British Columbia, Lat: 49.4911, Lng: -119.5886, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sorel-Tracy, Quebec 46.0333 -73.1167 matched with DB +City: Sorel-Tracy, state: Quebec, Lat: 46.0333, Lng: -73.1167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Kelowna, British Columbia 49.8625 -119.5833 matched with DB +City: East Kelowna, state: British Columbia, Lat: 49.8625, Lng: -119.5833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leamington, Ontario 42.0667 -82.5833 matched with DB +City: Leamington, state: Ontario, Lat: 42.0667, Lng: -82.5833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Gwillimbury, Ontario 44.1333 -79.4167 matched with DB +City: East Gwillimbury, state: Ontario, Lat: 44.1333, Lng: -79.4167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Côte-Saint-Luc, Quebec 45.4687 -73.6673 matched with DB +City: Cote-Saint-Luc, state: Quebec, Lat: 45.4687, Lng: -73.6673, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orangeville, Ontario 43.9167 -80.1167 matched with DB +City: Orangeville, state: Ontario, Lat: 43.9167, Lng: -80.1167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leduc, Alberta 53.2594 -113.5492 matched with DB +City: Leduc, state: Alberta, Lat: 53.2594, Lng: -113.5492, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moose Jaw, Saskatchewan 50.3933 -105.5519 matched with DB +City: Moose Jaw, state: Saskatchewan, Lat: 50.3933, Lng: -105.5519, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Moody, British Columbia 49.2831 -122.8317 matched with DB +City: Port Moody, state: British Columbia, Lat: 49.2831, Lng: -122.8317, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pointe-Claire, Quebec 45.4500 -73.8167 matched with DB +City: Pointe-Claire, state: Quebec, Lat: 45.45, Lng: -73.8167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orillia, Ontario 44.6000 -79.4167 matched with DB +City: Orillia, state: Ontario, Lat: 44.6, Lng: -79.4167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stratford, Ontario 43.3708 -80.9819 matched with DB +City: Stratford, state: Prince Edward Island, Lat: 46.2167, Lng: -63.0893, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stratford, Ontario 43.3708 -80.9819 matched with DB +City: Stratford, state: Ontario, Lat: 43.3708, Lng: -80.9819, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Erie, Ontario 42.9167 -79.0167 matched with DB +City: Fort Erie, state: Ontario, Lat: 42.9167, Lng: -79.0167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Val-d’Or, Quebec 48.1000 -77.7833 matched with DB +City: Val-d'Or, state: Quebec, Lat: 48.1, Lng: -77.7833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: LaSalle, Ontario 42.2167 -83.0667 matched with DB +City: LaSalle, state: Ontario, Lat: 42.2167, Lng: -83.0667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cochrane, Alberta 51.1890 -114.4670 matched with DB +City: Cochrane, state: Alberta, Lat: 51.189, Lng: -114.467, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Cowichan, British Columbia 48.8236 -123.7192 matched with DB +City: North Cowichan, state: British Columbia, Lat: 48.8236, Lng: -123.7192, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lloydminster, Saskatchewan 53.2783 -110.0050 matched with DB +City: Lloydminster, state: Alberta, Lat: 53.2807, Lng: -110.035, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lloydminster, Saskatchewan 53.2783 -110.0050 matched with DB +City: Lloydminster, state: Saskatchewan, Lat: 53.2783, Lng: -110.005, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chambly, Quebec 45.4311 -73.2873 matched with DB +City: Chambly, state: Quebec, Lat: 45.4311, Lng: -73.2873, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centre Wellington, Ontario 43.7000 -80.3667 matched with DB +City: Centre Wellington, state: Ontario, Lat: 43.7, Lng: -80.3667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Okotoks, Alberta 50.7250 -113.9750 matched with DB +City: Okotoks, state: Alberta, Lat: 50.725, Lng: -113.975, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Quebec 48.5500 -71.6500 matched with DB +City: Alma, state: Quebec, Lat: 48.55, Lng: -71.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Julie, Quebec 45.5833 -73.3333 matched with DB +City: Sainte-Julie, state: Quebec, Lat: 45.5833, Lng: -73.3333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Constant, Quebec 45.3700 -73.5700 matched with DB +City: Saint-Constant, state: Quebec, Lat: 45.37, Lng: -73.57, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Langley, British Columbia 49.0986908053773 -122.659728692569 matched with DB +City: Langley, state: British Columbia, Lat: 49.0987, Lng: -122.6597, Country: CAN (Matches - province: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grimsby, Ontario 43.2000 -79.5500 matched with DB +City: Grimsby, state: Ontario, Lat: 43.2, Lng: -79.55, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magog, Quebec 45.2667 -72.1500 matched with DB +City: Magog, state: Quebec, Lat: 45.2667, Lng: -72.15, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boisbriand, Quebec 45.6200 -73.8300 matched with DB +City: Boisbriand, state: Quebec, Lat: 45.62, Lng: -73.83, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehorse, Yukon 60.7029 -135.0691 matched with DB +City: Whitehorse, state: Yukon, Lat: 60.7029, Lng: -135.0691, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dieppe, New Brunswick 46.0989 -64.7242 matched with DB +City: Dieppe, state: New Brunswick, Lat: 46.0989, Lng: -64.7242, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: King, Ontario 44.0463 -79.6044 matched with DB +City: King, state: Ontario, Lat: 44.0463, Lng: -79.6044, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parksville, British Columbia 49.3150 -124.3120 matched with DB +City: Parksville, state: British Columbia, Lat: 49.315, Lng: -124.312, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conception Bay South, Newfoundland and Labrador 47.5167 -52.9833 matched with DB +City: Conception Bay South, state: Newfoundland and Labrador, Lat: 47.5167, Lng: -52.9833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Saskatchewan, Alberta 53.7128 -113.2133 matched with DB +City: Fort Saskatchewan, state: Alberta, Lat: 53.7128, Lng: -113.2133, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woolwich, Ontario 43.5667 -80.4833 matched with DB +City: Woolwich, state: Ontario, Lat: 43.5667, Lng: -80.4833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Thérèse, Quebec 45.6333 -73.8500 matched with DB +City: Sainte-Therese, state: Quebec, Lat: 45.6333, Lng: -73.85, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarence-Rockland, Ontario 45.4833 -75.2000 matched with DB +City: Clarence-Rockland, state: Ontario, Lat: 45.4833, Lng: -75.2, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Prairie, Quebec 45.4200 -73.5000 matched with DB +City: La Prairie, state: Quebec, Lat: 45.42, Lng: -73.5, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Bruno-de-Montarville, Quebec 45.5333 -73.3500 matched with DB +City: Saint-Bruno-de-Montarville, state: Quebec, Lat: 45.5333, Lng: -73.35, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Ontario 44.7500 -79.8833 matched with DB +City: Midland, state: Ontario, Lat: 44.75, Lng: -79.8833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thetford Mines, Quebec 46.1000 -71.3000 matched with DB +City: Thetford Mines, state: Quebec, Lat: 46.1, Lng: -71.3, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Ontario 43.1300 -79.4300 matched with DB +City: Lincoln, state: Ontario, Lat: 43.13, Lng: -79.43, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quispamsis, New Brunswick 45.4322 -65.9462 matched with DB +City: Quispamsis, state: New Brunswick, Lat: 45.4322, Lng: -65.9462, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wasaga Beach, Ontario 44.5206 -80.0167 matched with DB +City: Wasaga Beach, state: Ontario, Lat: 44.5206, Lng: -80.0167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collingwood, Ontario 44.5000 -80.2167 matched with DB +City: Collingwood, state: Ontario, Lat: 44.5, Lng: -80.2167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sept-Îles, Quebec 50.2167 -66.3833 matched with DB +City: Sept-Iles, state: Quebec, Lat: 50.2167, Lng: -66.3833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, British Columbia 48.7787 -123.7079 matched with DB +City: Duncan, state: British Columbia, Lat: 48.7787, Lng: -123.7079, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Quebec 45.4500 -74.1500 matched with DB +City: Hudson, state: Quebec, Lat: 45.45, Lng: -74.15, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Lin--Laurentides, Quebec 45.8500 -73.7667 matched with DB +City: Saint-Lin--Laurentides, state: Quebec, Lat: 45.85, Lng: -73.7667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Strathroy-Caradoc, Ontario 42.9575 -81.6167 matched with DB +City: Strathroy-Caradoc, state: Ontario, Lat: 42.9575, Lng: -81.6167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Squamish, British Columbia 49.7017 -123.1589 matched with DB +City: Squamish, state: British Columbia, Lat: 49.7017, Lng: -123.1589, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thorold, Ontario 43.1167 -79.2000 matched with DB +City: Thorold, state: Ontario, Lat: 43.1167, Lng: -79.2, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Truro, Nova Scotia 45.3647 -63.2800 matched with DB +City: Truro, state: Nova Scotia, Lat: 45.3647, Lng: -63.28, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherstburg, Ontario 42.1000 -83.0833 matched with DB +City: Amherstburg, state: Ontario, Lat: 42.1, Lng: -83.0833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: L’Assomption, Quebec 45.8333 -73.4167 matched with DB +City: L'Assomption, state: Quebec, Lat: 45.8333, Lng: -73.4167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tecumseh, Ontario 42.2431 -82.9256 matched with DB +City: Tecumseh, state: Ontario, Lat: 42.2431, Lng: -82.9256, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Candiac, Quebec 45.3800 -73.5200 matched with DB +City: Candiac, state: Quebec, Lat: 45.38, Lng: -73.52, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essa, Ontario 44.2500 -79.7833 matched with DB +City: Essa, state: Ontario, Lat: 44.25, Lng: -79.7833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Newfoundland and Labrador 47.5333 -52.8667 matched with DB +City: Paradise, state: Newfoundland and Labrador, Lat: 47.5333, Lng: -52.8667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Lambert, Quebec 45.5000 -73.5167 matched with DB +City: Saint-Lambert, state: Quebec, Lat: 45.5, Lng: -73.5167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pearl Park, Newfoundland and Labrador 47.5189 -52.8058 matched with DB +City: Mount Pearl Park, state: Newfoundland and Labrador, Lat: 47.5189, Lng: -52.8058, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Lazare, Quebec 45.4000 -74.1333 matched with DB +City: Saint-Lazare, state: Quebec, Lat: 45.4, Lng: -74.1333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Owen Sound, Ontario 44.5667 -80.9333 matched with DB +City: Owen Sound, state: Ontario, Lat: 44.5667, Lng: -80.9333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brockville, Ontario 44.5833 -75.6833 matched with DB +City: Brockville, state: Ontario, Lat: 44.5833, Lng: -75.6833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chestermere, Alberta 51.0500 -113.8225 matched with DB +City: Chestermere, state: Alberta, Lat: 51.05, Lng: -113.8225, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsville, Ontario 42.1000 -82.7167 matched with DB +City: Kingsville, state: Ontario, Lat: 42.1, Lng: -82.7167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Alberni, British Columbia 49.2339 -124.8050 matched with DB +City: Port Alberni, state: British Columbia, Lat: 49.2339, Lng: -124.805, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springwater, Ontario 44.4333 -79.7333 matched with DB +City: Springwater, state: Ontario, Lat: 44.4333, Lng: -79.7333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scugog, Ontario 44.0900 -78.9360 matched with DB +City: Scugog, state: Ontario, Lat: 44.09, Lng: -78.936, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uxbridge, Ontario 44.1167 -79.1333 matched with DB +City: Uxbridge, state: Ontario, Lat: 44.1167, Lng: -79.1333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort St. John, British Columbia 56.2465 -120.8476 matched with DB +City: Fort St. John, state: British Columbia, Lat: 56.2465, Lng: -120.8476, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmot, Ontario 43.4000 -80.6500 matched with DB +City: Wilmot, state: Ontario, Lat: 43.4, Lng: -80.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex, Ontario 42.0833 -82.9000 matched with DB +City: Essex, state: Ontario, Lat: 42.0833, Lng: -82.9, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Varennes, Quebec 45.6833 -73.4333 matched with DB +City: Varennes, state: Quebec, Lat: 45.6833, Lng: -73.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oro-Medonte, Ontario 44.5667 -79.5833 matched with DB +City: Oro-Medonte, state: Ontario, Lat: 44.5667, Lng: -79.5833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mont-Royal, Quebec 45.5161 -73.6431 matched with DB +City: Mont-Royal, state: Quebec, Lat: 45.5161, Lng: -73.6431, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaumont, Alberta 53.3572 -113.4147 matched with DB +City: Beaumont, state: Alberta, Lat: 53.3572, Lng: -113.4147, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baie-Comeau, Quebec 49.2167 -68.1500 matched with DB +City: Baie-Comeau, state: Quebec, Lat: 49.2167, Lng: -68.15, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, New Brunswick 46.0613 -64.8052 matched with DB +City: Riverview, state: New Brunswick, Lat: 46.0613, Lng: -64.8052, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cobourg, Ontario 43.9667 -78.1667 matched with DB +City: Cobourg, state: Ontario, Lat: 43.9667, Lng: -78.1667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cranbrook, British Columbia 49.5097 -115.7667 matched with DB +City: Cranbrook, state: British Columbia, Lat: 49.5097, Lng: -115.7667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yellowknife, Northwest Territories 62.4709 -114.4053 matched with DB +City: Yellowknife, state: Northwest Territories, Lat: 62.4709, Lng: -114.4053, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Frontenac, Ontario 44.5081 -76.4939 matched with DB +City: South Frontenac, state: Ontario, Lat: 44.5081, Lng: -76.4939, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rivière-du-Loup, Quebec 47.8333 -69.5333 matched with DB +City: Riviere-du-Loup, state: Quebec, Lat: 47.8333, Lng: -69.5333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Colborne, Ontario 42.8833 -79.2500 matched with DB +City: Port Colborne, state: Ontario, Lat: 42.8833, Lng: -79.25, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Augustin-de-Desmaures, Quebec 46.7333 -71.4667 matched with DB +City: Saint-Augustin-de-Desmaures, state: Quebec, Lat: 46.7333, Lng: -71.4667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Ontario 45.3333 -79.2167 matched with DB +City: Huntsville, state: Ontario, Lat: 45.3333, Lng: -79.2167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Marthe-sur-le-Lac, Quebec 45.5300 -73.9300 matched with DB +City: Sainte-Marthe-sur-le-Lac, state: Quebec, Lat: 45.53, Lng: -73.93, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lloydminster, Alberta 53.2807 -110.0350 matched with DB +City: Lloydminster, state: Alberta, Lat: 53.2807, Lng: -110.035, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lloydminster, Alberta 53.2807 -110.0350 matched with DB +City: Lloydminster, state: Saskatchewan, Lat: 53.2783, Lng: -110.005, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westmount, Quebec 45.4833 -73.6000 matched with DB +City: Westmount, state: Quebec, Lat: 45.4833, Lng: -73.6, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russell, Ontario 45.2569 -75.3583 matched with DB +City: Russell, state: Ontario, Lat: 45.2569, Lng: -75.3583, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Les Coteaux, Quebec 45.2800 -74.2300 matched with DB +City: Les Coteaux, state: Quebec, Lat: 45.28, Lng: -74.23, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salmon Arm, British Columbia 50.7022 -119.2722 matched with DB +City: Salmon Arm, state: British Columbia, Lat: 50.7022, Lng: -119.2722, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkland, Quebec 45.4500 -73.8667 matched with DB +City: Kirkland, state: Quebec, Lat: 45.45, Lng: -73.8667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corner Brook, Newfoundland and Labrador 48.9287 -57.9260 matched with DB +City: Corner Brook, state: Newfoundland and Labrador, Lat: 48.9287, Lng: -57.926, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Glasgow, Nova Scotia 45.5926 -62.6455 matched with DB +City: New Glasgow, state: Nova Scotia, Lat: 45.5926, Lng: -62.6455, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dorval, Quebec 45.4500 -73.7500 matched with DB +City: Dorval, state: Quebec, Lat: 45.45, Lng: -73.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaconsfield, Quebec 45.4333 -73.8667 matched with DB +City: Beaconsfield, state: Quebec, Lat: 45.4333, Lng: -73.8667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pitt Meadows, British Columbia 49.2333 -122.6833 matched with DB +City: Pitt Meadows, state: British Columbia, Lat: 49.2333, Lng: -122.6833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niagara-on-the-Lake, Ontario 43.2553 -79.0717 matched with DB +City: Niagara-on-the-Lake, state: Ontario, Lat: 43.2553, Lng: -79.0717, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colwood, British Columbia 48.4236 -123.4958 matched with DB +City: Colwood, state: British Columbia, Lat: 48.4236, Lng: -123.4958, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middlesex Centre, Ontario 43.0500 -81.4500 matched with DB +City: Middlesex Centre, state: Ontario, Lat: 43.05, Lng: -81.45, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mont-Saint-Hilaire, Quebec 45.5622 -73.1917 matched with DB +City: Mont-Saint-Hilaire, state: Quebec, Lat: 45.5622, Lng: -73.1917, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camrose, Alberta 53.0167 -112.8333 matched with DB +City: Camrose, state: Alberta, Lat: 53.0167, Lng: -112.8333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selwyn, Ontario 44.4167 -78.3333 matched with DB +City: Selwyn, state: Ontario, Lat: 44.4167, Lng: -78.3333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tillsonburg, Ontario 42.8667 -80.7333 matched with DB +City: Tillsonburg, state: Ontario, Lat: 42.8667, Lng: -80.7333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pelham, Ontario 43.0333 -79.3333 matched with DB +City: Pelham, state: Ontario, Lat: 43.0333, Lng: -79.3333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petawawa, Ontario 45.9000 -77.2833 matched with DB +City: Petawawa, state: Ontario, Lat: 45.9, Lng: -77.2833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stony Plain, Alberta 53.5264 -114.0069 matched with DB +City: Stony Plain, state: Alberta, Lat: 53.5264, Lng: -114.0069, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Bay, British Columbia 48.4264 -123.3228 matched with DB +City: Oak Bay, state: British Columbia, Lat: 48.4264, Lng: -123.3228, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Grenville, Ontario 44.9667 -75.6500 matched with DB +City: North Grenville, state: Ontario, Lat: 44.9667, Lng: -75.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loyalist, Ontario 44.2500 -76.7500 matched with DB +City: Loyalist, state: Ontario, Lat: 44.25, Lng: -76.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deux-Montagnes, Quebec 45.5333 -73.8833 matched with DB +City: Deux-Montagnes, state: Quebec, Lat: 45.5333, Lng: -73.8833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Steinbach, Manitoba 49.5258 -96.6839 matched with DB +City: Steinbach, state: Manitoba, Lat: 49.5258, Lng: -96.6839, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Colomban, Quebec 45.7300 -74.1300 matched with DB +City: Saint-Colomban, state: Quebec, Lat: 45.73, Lng: -74.13, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miramichi, New Brunswick 47.0196 -65.5072 matched with DB +City: Miramichi, state: New Brunswick, Lat: 47.0196, Lng: -65.5072, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Esquimalt, British Columbia 48.4306 -123.4147 matched with DB +City: Esquimalt, state: British Columbia, Lat: 48.4306, Lng: -123.4147, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central Saanich, British Columbia 48.5142 -123.3839 matched with DB +City: Central Saanich, state: British Columbia, Lat: 48.5142, Lng: -123.3839, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Catherine, Quebec 45.4000 -73.5800 matched with DB +City: Sainte-Catherine, state: Quebec, Lat: 45.4, Lng: -73.58, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Hope, Ontario 43.9500 -78.3000 matched with DB +City: Port Hope, state: Ontario, Lat: 43.95, Lng: -78.3, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inverness, Nova Scotia 46.2000 -61.1000 matched with DB +City: Inverness, state: Nova Scotia, Lat: 46.2, Lng: -61.1, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Basile-le-Grand, Quebec 45.5333 -73.2833 matched with DB +City: Saint-Basile-le-Grand, state: Quebec, Lat: 45.5333, Lng: -73.2833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: L’Ancienne-Lorette, Quebec 46.8000 -71.3500 matched with DB +City: L'Ancienne-Lorette, state: Quebec, Lat: 46.8, Lng: -71.35, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Swift Current, Saskatchewan 50.2881 -107.7939 matched with DB +City: Swift Current, state: Saskatchewan, Lat: 50.2881, Lng: -107.7939, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pembroke, Ontario 45.8167 -77.1000 matched with DB +City: Pembroke, state: Ontario, Lat: 45.8167, Lng: -77.1, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edmundston, New Brunswick 47.3765 -68.3253 matched with DB +City: Edmundston, state: New Brunswick, Lat: 47.3765, Lng: -68.3253, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkton, Saskatchewan 51.2139 -102.4628 matched with DB +City: Yorkton, state: Saskatchewan, Lat: 51.2139, Lng: -102.4628, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Manitoba 49.9292 -96.6939 matched with DB +City: Springfield, state: Manitoba, Lat: 49.9292, Lng: -96.6939, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sylvan Lake, Alberta 52.3083 -114.0964 matched with DB +City: Sylvan Lake, state: Alberta, Lat: 52.3083, Lng: -114.0964, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bracebridge, Ontario 45.0333 -79.3000 matched with DB +City: Bracebridge, state: Ontario, Lat: 45.0333, Lng: -79.3, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerside, Prince Edward Island 46.4000 -63.7833 matched with DB +City: Summerside, state: Prince Edward Island, Lat: 46.4, Lng: -63.7833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canmore, Alberta 51.0890 -115.3590 matched with DB +City: Canmore, state: Alberta, Lat: 51.089, Lng: -115.359, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bathurst, New Brunswick 47.6200 -65.6500 matched with DB +City: Bathurst, state: New Brunswick, Lat: 47.62, Lng: -65.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greater Napanee, Ontario 44.2500 -76.9500 matched with DB +City: Greater Napanee, state: Ontario, Lat: 44.25, Lng: -76.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Country, British Columbia 50.0833 -119.4142 matched with DB +City: Lake Country, state: British Columbia, Lat: 50.0833, Lng: -119.4142, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Manitoba 49.4433 -96.8492 matched with DB +City: Hanover, state: Manitoba, Lat: 49.4433, Lng: -96.8492, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winkler, Manitoba 49.1817 -97.9397 matched with DB +City: Winkler, state: Manitoba, Lat: 49.1817, Lng: -97.9397, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Charles-Borromée, Quebec 46.0500 -73.4667 matched with DB +City: Saint-Charles-Borromee, state: Quebec, Lat: 46.05, Lng: -73.4667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cowansville, Quebec 45.2000 -72.7500 matched with DB +City: Cowansville, state: Quebec, Lat: 45.2, Lng: -72.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Anne-des-Plaines, Quebec 45.7617 -73.8204 matched with DB +City: Sainte-Anne-des-Plaines, state: Quebec, Lat: 45.7617, Lng: -73.8204, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gaspé, Quebec 48.8333 -64.4833 matched with DB +City: Gaspe, state: Quebec, Lat: 48.8333, Lng: -64.4833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sooke, British Columbia 48.3761 -123.7378 matched with DB +City: Sooke, state: British Columbia, Lat: 48.3761, Lng: -123.7378, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kenora, Ontario 49.7667 -94.4833 matched with DB +City: Kenora, state: Ontario, Lat: 49.7667, Lng: -94.4833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cold Lake, Alberta 54.4642 -110.1825 matched with DB +City: Cold Lake, state: Alberta, Lat: 54.4642, Lng: -110.1825, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooks, Alberta 50.5642 -111.8989 matched with DB +City: Brooks, state: Alberta, Lat: 50.5642, Lng: -111.8989, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kentville, Nova Scotia 45.0775 -64.4958 matched with DB +City: Kentville, state: Nova Scotia, Lat: 45.0775, Lng: -64.4958, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Comox, British Columbia 49.6733 -124.9022 matched with DB +City: Comox, state: British Columbia, Lat: 49.6733, Lng: -124.9022, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pincourt, Quebec 45.3833 -73.9833 matched with DB +City: Pincourt, state: Quebec, Lat: 45.3833, Lng: -73.9833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mississippi Mills, Ontario 45.2167 -76.2000 matched with DB +City: Mississippi Mills, state: Ontario, Lat: 45.2167, Lng: -76.2, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Clair, Ontario 42.7833 -82.3500 matched with DB +City: St. Clair, state: Ontario, Lat: 42.7833, Lng: -82.35, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terrace, British Columbia 54.5164 -128.5997 matched with DB +City: Terrace, state: British Columbia, Lat: 54.5164, Lng: -128.5997, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mercier, Quebec 45.3200 -73.7500 matched with DB +City: Mercier, state: Quebec, Lat: 45.32, Lng: -73.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Lincoln, Ontario 43.0667 -79.5667 matched with DB +City: West Lincoln, state: Ontario, Lat: 43.0667, Lng: -79.5667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lavaltrie, Quebec 45.8833 -73.2833 matched with DB +City: Lavaltrie, state: Quebec, Lat: 45.8833, Lng: -73.2833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Nipissing / Nipissing Ouest, Ontario 46.3667 -79.9167 matched with DB +City: West Nipissing / Nipissing Ouest, state: Ontario, Lat: 46.3667, Lng: -79.9167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Strathmore, Alberta 51.0378 -113.4003 matched with DB +City: Strathmore, state: Alberta, Lat: 51.0378, Lng: -113.4003, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: High River, Alberta 50.5808 -113.8744 matched with DB +City: High River, state: Alberta, Lat: 50.5808, Lng: -113.8744, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearview, Ontario 44.3981 -80.0742 matched with DB +City: Clearview, state: Ontario, Lat: 44.3981, Lng: -80.0742, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lachute, Quebec 45.6500 -74.3333 matched with DB +City: Lachute, state: Quebec, Lat: 45.65, Lng: -74.3333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemère, Quebec 45.6369 -73.8000 matched with DB +City: Rosemere, state: Quebec, Lat: 45.6369, Lng: -73.8, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matane, Quebec 48.8500 -67.5333 matched with DB +City: Matane, state: Quebec, Lat: 48.85, Lng: -67.5333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thames Centre, Ontario 43.0300 -81.0800 matched with DB +City: Thames Centre, state: Ontario, Lat: 43.03, Lng: -81.08, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powell River, British Columbia 49.8353 -124.5247 matched with DB +City: Powell River, state: British Columbia, Lat: 49.8353, Lng: -124.5247, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carleton Place, Ontario 45.1333 -76.1333 matched with DB +City: Carleton Place, state: Ontario, Lat: 45.1333, Lng: -76.1333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guelph/Eramosa, Ontario 43.6300 -80.2200 matched with DB +City: Guelph/Eramosa, state: Ontario, Lat: 43.63, Lng: -80.22, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Falls, Newfoundland and Labrador 48.9578 -55.6633 matched with DB +City: Grand Falls, state: Newfoundland and Labrador, Lat: 48.9578, Lng: -55.6633, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Battleford, Saskatchewan 52.7575 -108.2861 matched with DB +City: North Battleford, state: Saskatchewan, Lat: 52.7575, Lng: -108.2861, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mont-Laurier, Quebec 46.5500 -75.5000 matched with DB +City: Mont-Laurier, state: Quebec, Lat: 46.55, Lng: -75.5, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central Elgin, Ontario 42.7667 -81.1000 matched with DB +City: Central Elgin, state: Ontario, Lat: 42.7667, Lng: -81.1, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mistassini, Quebec 48.8229 -72.2154 matched with DB +City: Mistassini, state: Quebec, Lat: 48.8229, Lng: -72.2154, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saugeen Shores, Ontario 44.4333 -81.3667 matched with DB +City: Saugeen Shores, state: Ontario, Lat: 44.4333, Lng: -81.3667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ingersoll, Ontario 43.0392 -80.8836 matched with DB +City: Ingersoll, state: Ontario, Lat: 43.0392, Lng: -80.8836, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beauharnois, Quebec 45.3200 -73.8700 matched with DB +City: Beauharnois, state: Quebec, Lat: 45.32, Lng: -73.87, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Stormont, Ontario 45.0833 -74.9667 matched with DB +City: South Stormont, state: Ontario, Lat: 45.0833, Lng: -74.9667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bécancour, Quebec 46.3333 -72.4333 matched with DB +City: Becancour, state: Quebec, Lat: 46.3333, Lng: -72.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Severn, Ontario 44.7500 -79.5167 matched with DB +City: Severn, state: Ontario, Lat: 44.75, Lng: -79.5167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lacombe, Alberta 52.4683 -113.7369 matched with DB +City: Lacombe, state: Alberta, Lat: 52.4683, Lng: -113.7369, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Sophie, Quebec 45.8200 -73.9000 matched with DB +City: Sainte-Sophie, state: Quebec, Lat: 45.82, Lng: -73.9, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Val-des-Monts, Quebec 45.6500 -75.6667 matched with DB +City: Val-des-Monts, state: Quebec, Lat: 45.65, Lng: -75.6667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Amable, Quebec 45.6500 -73.3000 matched with DB +City: Saint-Amable, state: Quebec, Lat: 45.65, Lng: -73.3, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage La Prairie, Manitoba 49.9728 -98.2919 matched with DB +City: Portage La Prairie, state: Manitoba, Lat: 49.9728, Lng: -98.2919, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Glengarry, Ontario 45.2000 -74.5833 matched with DB +City: South Glengarry, state: Ontario, Lat: 45.2, Lng: -74.5833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Marie, Quebec 46.4500 -71.0333 matched with DB +City: Sainte-Marie, state: Quebec, Lat: 46.45, Lng: -71.0333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Perth, Ontario 43.7300 -80.9500 matched with DB +City: North Perth, state: Ontario, Lat: 43.73, Lng: -80.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thompson, Manitoba 55.7433 -97.8553 matched with DB +City: Thompson, state: Manitoba, Lat: 55.7433, Lng: -97.8553, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trent Hills, Ontario 44.3142 -77.8514 matched with DB +City: Trent Hills, state: Ontario, Lat: 44.3142, Lng: -77.8514, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trail, British Columbia 49.0950 -117.7100 matched with DB +City: Trail, state: British Columbia, Lat: 49.095, Lng: -117.71, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Nation / La Nation, Ontario 45.3500 -75.0333 matched with DB +City: The Nation / La Nation, state: Ontario, Lat: 45.35, Lng: -75.0333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amos, Quebec 48.5667 -78.1167 matched with DB +City: Amos, state: Quebec, Lat: 48.5667, Lng: -78.1167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wetaskiwin, Alberta 52.9694 -113.3769 matched with DB +City: Wetaskiwin, state: Alberta, Lat: 52.9694, Lng: -113.3769, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Grey, Ontario 44.1833 -80.8167 matched with DB +City: West Grey, state: Ontario, Lat: 44.1833, Lng: -80.8167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warman, Saskatchewan 52.3219 -106.5842 matched with DB +City: Warman, state: Saskatchewan, Lat: 52.3219, Lng: -106.5842, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dawson Creek, British Columbia 55.7606 -120.2356 matched with DB +City: Dawson Creek, state: British Columbia, Lat: 55.7606, Lng: -120.2356, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, British Columbia 48.6506 -123.3986 matched with DB +City: Sidney, state: British Columbia, Lat: 48.6506, Lng: -123.3986, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gravenhurst, Ontario 44.9167 -79.3667 matched with DB +City: Gravenhurst, state: Ontario, Lat: 44.9167, Lng: -79.3667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prince Rupert, British Columbia 54.3122 -130.3271 matched with DB +City: Prince Rupert, state: British Columbia, Lat: 54.3122, Lng: -130.3271, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perth East, Ontario 43.4700 -80.9500 matched with DB +City: Perth East, state: Ontario, Lat: 43.47, Lng: -80.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Saanich, British Columbia 48.6142 -123.4200 matched with DB +City: North Saanich, state: British Columbia, Lat: 48.6142, Lng: -123.42, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prévost, Quebec 45.8700 -74.0800 matched with DB +City: Prevost, state: Quebec, Lat: 45.87, Lng: -74.08, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Adèle, Quebec 45.9500 -74.1300 matched with DB +City: Sainte-Adele, state: Quebec, Lat: 45.95, Lng: -74.13, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Agathe-des-Monts, Quebec 46.0500 -74.2800 matched with DB +City: Sainte-Agathe-des-Monts, state: Quebec, Lat: 46.05, Lng: -74.28, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quesnel, British Columbia 52.9784 -122.4927 matched with DB +City: Quesnel, state: British Columbia, Lat: 52.9784, Lng: -122.4927, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Les Îles-de-la-Madeleine, Quebec 47.3833 -61.8667 matched with DB +City: Les Iles-de-la-Madeleine, state: Quebec, Lat: 47.3833, Lng: -61.8667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taché, Manitoba 49.7081 -96.6736 matched with DB +City: Tache, state: Manitoba, Lat: 49.7081, Lng: -96.6736, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington North, Ontario 43.9000 -80.5700 matched with DB +City: Wellington North, state: Ontario, Lat: 43.9, Lng: -80.57, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Andrews, Manitoba 50.2700 -96.9747 matched with DB +City: St. Andrews, state: Manitoba, Lat: 50.27, Lng: -96.9747, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williams Lake, British Columbia 52.1294 -122.1383 matched with DB +City: Williams Lake, state: British Columbia, Lat: 52.1294, Lng: -122.1383, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gander, Newfoundland and Labrador 48.9569 -54.6089 matched with DB +City: Gander, state: Newfoundland and Labrador, Lat: 48.9569, Lng: -54.6089, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whistler, British Columbia 50.1208 -122.9544 matched with DB +City: Whistler, state: British Columbia, Lat: 50.1208, Lng: -122.9544, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Ontario 44.1222 -77.7642 matched with DB +City: Brighton, state: Ontario, Lat: 44.1222, Lng: -77.7642, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tiny, Ontario 44.6833 -79.9500 matched with DB +City: Tiny, state: Ontario, Lat: 44.6833, Lng: -79.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawkesbury, Ontario 45.6000 -74.6000 matched with DB +City: Hawkesbury, state: Ontario, Lat: 45.6, Lng: -74.6, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carignan, Quebec 45.4500 -73.3000 matched with DB +City: Carignan, state: Quebec, Lat: 45.45, Lng: -73.3, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brock, Ontario 44.3167 -79.0833 matched with DB +City: Brock, state: Ontario, Lat: 44.3167, Lng: -79.0833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: L’Île-Perrot, Quebec 45.3833 -73.9500 matched with DB +City: L'Ile-Perrot, state: Quebec, Lat: 45.3833, Lng: -73.95, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerland, British Columbia 49.6006 -119.6778 matched with DB +City: Summerland, state: British Columbia, Lat: 49.6006, Lng: -119.6778, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Clements, Manitoba 50.2689 -96.6742 matched with DB +City: St. Clements, state: Manitoba, Lat: 50.2689, Lng: -96.6742, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: View Royal, British Columbia 48.4517 -123.4339 matched with DB +City: View Royal, state: British Columbia, Lat: 48.4517, Lng: -123.4339, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montmagny, Quebec 46.9833 -70.5500 matched with DB +City: Montmagny, state: Quebec, Lat: 46.9833, Lng: -70.55, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cantley, Quebec 45.5667 -75.7833 matched with DB +City: Cantley, state: Quebec, Lat: 45.5667, Lng: -75.7833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erin, Ontario 43.7667 -80.0667 matched with DB +City: Erin, state: Ontario, Lat: 43.7667, Lng: -80.0667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Notre-Dame-de-l'Île-Perrot, Quebec 45.3667 -73.9333 matched with DB +City: Notre-Dame-de-l'Ile-Perrot, state: Quebec, Lat: 45.3667, Lng: -73.9333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kincardine, Ontario 44.1667 -81.6333 matched with DB +City: Kincardine, state: Ontario, Lat: 44.1667, Lng: -81.6333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elliot Lake, Ontario 46.3833 -82.6500 matched with DB +City: Elliot Lake, state: Ontario, Lat: 46.3833, Lng: -82.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bromont, Quebec 45.3167 -72.6500 matched with DB +City: Bromont, state: Quebec, Lat: 45.3167, Lng: -72.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arnprior, Ontario 45.4333 -76.3500 matched with DB +City: Arnprior, state: Ontario, Lat: 45.4333, Lng: -76.35, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Dundas, Ontario 45.0833 -75.3500 matched with DB +City: North Dundas, state: Ontario, Lat: 45.0833, Lng: -75.35, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellesley, Ontario 43.5500 -80.7167 matched with DB +City: Wellesley, state: Ontario, Lat: 43.55, Lng: -80.7167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nelson, British Columbia 49.5000 -117.2833 matched with DB +City: Nelson, state: British Columbia, Lat: 49.5, Lng: -117.2833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ladysmith, British Columbia 48.9975 -123.8203 matched with DB +City: Ladysmith, state: British Columbia, Lat: 48.9975, Lng: -123.8203, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coldstream, British Columbia 50.2200 -119.2481 matched with DB +City: Coldstream, state: British Columbia, Lat: 50.22, Lng: -119.2481, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgian Bluffs, Ontario 44.6500 -81.0333 matched with DB +City: Georgian Bluffs, state: Ontario, Lat: 44.65, Lng: -81.0333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weyburn, Saskatchewan 49.6611 -103.8525 matched with DB +City: Weyburn, state: Saskatchewan, Lat: 49.6611, Lng: -103.8525, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Tuque, Quebec 48.0652 -74.0528 matched with DB +City: La Tuque, state: Quebec, Lat: 48.0652, Lng: -74.0528, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwich, Ontario 42.9833 -80.6000 matched with DB +City: Norwich, state: Ontario, Lat: 42.9833, Lng: -80.6, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meaford, Ontario 44.5800 -80.7300 matched with DB +City: Meaford, state: Ontario, Lat: 44.58, Lng: -80.73, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adjala-Tosorontio, Ontario 44.1333 -79.9333 matched with DB +City: Adjala-Tosorontio, state: Ontario, Lat: 44.1333, Lng: -79.9333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton Township, Ontario 44.0540 -78.2164 matched with DB +City: Hamilton Township, state: Ontario, Lat: 44.054, Lng: -78.2164, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stratford, Prince Edward Island 46.2167 -63.0893 matched with DB +City: Stratford, state: Prince Edward Island, Lat: 46.2167, Lng: -63.0893, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stratford, Prince Edward Island 46.2167 -63.0893 matched with DB +City: Stratford, state: Ontario, Lat: 43.3708, Lng: -80.9819, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Estevan, Saskatchewan 49.1392 -102.9861 matched with DB +City: Estevan, state: Saskatchewan, Lat: 49.1392, Lng: -102.9861, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Dundas, Ontario 44.9167 -75.2667 matched with DB +City: South Dundas, state: Ontario, Lat: 44.9167, Lng: -75.2667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lambton Shores, Ontario 43.1833 -81.9000 matched with DB +City: Lambton Shores, state: Ontario, Lat: 43.1833, Lng: -81.9, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Dumfries, Ontario 43.3200 -80.3800 matched with DB +City: North Dumfries, state: Ontario, Lat: 43.32, Lng: -80.38, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martensville, Saskatchewan 52.2897 -106.6667 matched with DB +City: Martensville, state: Saskatchewan, Lat: 52.2897, Lng: -106.6667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Ontario 43.7358 -80.6681 matched with DB +City: Mapleton, state: Ontario, Lat: 43.7358, Lng: -80.6681, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rawdon, Quebec 46.0500 -73.7167 matched with DB +City: Rawdon, state: Quebec, Lat: 46.05, Lng: -73.7167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morinville, Alberta 53.8022 -113.6497 matched with DB +City: Morinville, state: Alberta, Lat: 53.8022, Lng: -113.6497, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackfalds, Alberta 52.3833 -113.8000 matched with DB +City: Blackfalds, state: Alberta, Lat: 52.3833, Lng: -113.8, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Nova Scotia 44.6500 -64.3000 matched with DB +City: Chester, state: Nova Scotia, Lat: 44.65, Lng: -64.3, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Queens, Nova Scotia 44.0333 -64.7167 matched with DB +City: Queens, state: Nova Scotia, Lat: 44.0333, Lng: -64.7167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selkirk, Manitoba 50.1436 -96.8839 matched with DB +City: Selkirk, state: Manitoba, Lat: 50.1436, Lng: -96.8839, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Félicien, Quebec 48.6500 -72.4500 matched with DB +City: Saint-Felicien, state: Quebec, Lat: 48.65, Lng: -72.45, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roberval, Quebec 48.5200 -72.2300 matched with DB +City: Roberval, state: Quebec, Lat: 48.52, Lng: -72.23, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rideau Lakes, Ontario 44.6667 -76.2167 matched with DB +City: Rideau Lakes, state: Ontario, Lat: 44.6667, Lng: -76.2167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sechelt, British Columbia 49.4742 -123.7542 matched with DB +City: Sechelt, state: British Columbia, Lat: 49.4742, Lng: -123.7542, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bois-des-Filion, Quebec 45.6667 -73.7500 matched with DB +City: Bois-des-Filion, state: Quebec, Lat: 45.6667, Lng: -73.75, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Glengarry, Ontario 45.3333 -74.7333 matched with DB +City: North Glengarry, state: Ontario, Lat: 45.3333, Lng: -74.7333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Huron, Ontario 43.3200 -81.5000 matched with DB +City: South Huron, state: Ontario, Lat: 43.32, Lng: -81.5, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marieville, Quebec 45.4333 -73.1667 matched with DB +City: Marieville, state: Quebec, Lat: 45.4333, Lng: -73.1667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Penetanguishene, Ontario 44.7667 -79.9333 matched with DB +City: Penetanguishene, state: Ontario, Lat: 44.7667, Lng: -79.9333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tay, Ontario 44.7167 -79.7667 matched with DB +City: Tay, state: Ontario, Lat: 44.7167, Lng: -79.7667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Castlegar, British Columbia 49.3256 -117.6661 matched with DB +City: Castlegar, state: British Columbia, Lat: 49.3256, Lng: -117.6661, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cavan Monaghan, Ontario 44.2000 -78.4667 matched with DB +City: Cavan Monaghan, state: Ontario, Lat: 44.2, Lng: -78.4667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morden, Manitoba 49.1919 -98.1006 matched with DB +City: Morden, state: Manitoba, Lat: 49.1919, Lng: -98.1006, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temiskaming Shores, Ontario 47.5167 -79.6833 matched with DB +City: Temiskaming Shores, state: Ontario, Lat: 47.5167, Lng: -79.6833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hinton, Alberta 53.4114 -117.5639 matched with DB +City: Hinton, state: Alberta, Lat: 53.4114, Lng: -117.5639, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Sauveur, Quebec 45.9000 -74.1700 matched with DB +City: Saint-Sauveur, state: Quebec, Lat: 45.9, Lng: -74.17, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grey Highlands, Ontario 44.3333 -80.5000 matched with DB +City: Grey Highlands, state: Ontario, Lat: 44.3333, Lng: -80.5, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East St. Paul, Manitoba 49.9772 -97.0103 matched with DB +City: East St. Paul, state: Manitoba, Lat: 49.9772, Lng: -97.0103, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stoneham-et-Tewkesbury, Quebec 47.1667 -71.4333 matched with DB +City: Stoneham-et-Tewkesbury, state: Quebec, Lat: 47.1667, Lng: -71.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alfred and Plantagenet, Ontario 45.5667 -74.9167 matched with DB +City: Alfred and Plantagenet, state: Ontario, Lat: 45.5667, Lng: -74.9167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mont-Tremblant, Quebec 46.1167 -74.6000 matched with DB +City: Mont-Tremblant, state: Quebec, Lat: 46.1167, Lng: -74.6, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Zotique, Quebec 45.2500 -74.2500 matched with DB +City: Saint-Zotique, state: Quebec, Lat: 45.25, Lng: -74.25, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saint-Raymond, Quebec 46.9000 -71.8333 matched with DB +City: Saint-Raymond, state: Quebec, Lat: 46.9, Lng: -71.8333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gibsons, British Columbia 49.4028 -123.5036 matched with DB +City: Gibsons, state: British Columbia, Lat: 49.4028, Lng: -123.5036, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Nova Scotia 45.8167 -64.2167 matched with DB +City: Amherst, state: Nova Scotia, Lat: 45.8167, Lng: -64.2167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown-Kitley, Ontario 44.7000 -75.8833 matched with DB +City: Elizabethtown-Kitley, state: Ontario, Lat: 44.7, Lng: -75.8833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smiths Falls, Ontario 44.9000 -76.0167 matched with DB +City: Smiths Falls, state: Ontario, Lat: 44.9, Lng: -76.0167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lorraine, Quebec 45.6833 -73.7833 matched with DB +City: Lorraine, state: Quebec, Lat: 45.6833, Lng: -73.7833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramara, Ontario 44.6333 -79.2167 matched with DB +City: Ramara, state: Ontario, Lat: 44.6333, Lng: -79.2167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Notre-Dame-des-Prairies, Quebec 46.0500 -73.4333 matched with DB +City: Notre-Dame-des-Prairies, state: Quebec, Lat: 46.05, Lng: -73.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leeds and the Thousand Islands, Ontario 44.4500 -76.0800 matched with DB +City: Leeds and the Thousand Islands, state: Ontario, Lat: 44.45, Lng: -76.08, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brockton, Ontario 44.1667 -81.2167 matched with DB +City: Brockton, state: Ontario, Lat: 44.1667, Lng: -81.2167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurentian Valley, Ontario 45.7681 -77.2239 matched with DB +City: Laurentian Valley, state: Ontario, Lat: 45.7681, Lng: -77.2239, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mono, Ontario 44.0167 -80.0667 matched with DB +City: Mono, state: Ontario, Lat: 44.0167, Lng: -80.0667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sainte-Julienne, Quebec 45.9700 -73.7200 matched with DB +City: Sainte-Julienne, state: Quebec, Lat: 45.97, Lng: -73.72, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Qualicum Beach, British Columbia 49.3500 -124.4333 matched with DB +City: Qualicum Beach, state: British Columbia, Lat: 49.35, Lng: -124.4333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malahide, Ontario 42.7928 -80.9361 matched with DB +City: Malahide, state: Ontario, Lat: 42.7928, Lng: -80.9361, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oromocto, New Brunswick 45.8488 -66.4788 matched with DB +City: Oromocto, state: New Brunswick, Lat: 45.8488, Lng: -66.4788, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitecourt, Alberta 54.1417 -115.6833 matched with DB +City: Whitecourt, state: Alberta, Lat: 54.1417, Lng: -115.6833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olds, Alberta 51.7928 -114.1067 matched with DB +City: Olds, state: Alberta, Lat: 51.7928, Lng: -114.1067, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron East, Ontario 43.6300 -81.2800 matched with DB +City: Huron East, state: Ontario, Lat: 43.63, Lng: -81.28, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beckwith, Ontario 45.0833 -76.0667 matched with DB +City: Beckwith, state: Ontario, Lat: 45.0833, Lng: -76.0667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Labrador City, Newfoundland and Labrador 52.9500 -66.9167 matched with DB +City: Labrador City, state: Newfoundland and Labrador, Lat: 52.95, Lng: -66.9167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelburne, Ontario 44.0833 -80.2000 matched with DB +City: Shelburne, state: Ontario, Lat: 44.0833, Lng: -80.2, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanley, Manitoba 49.1331 -98.0656 matched with DB +City: Stanley, state: Manitoba, Lat: 49.1331, Lng: -98.0656, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taber, Alberta 49.7847 -112.1508 matched with DB +City: Taber, state: Alberta, Lat: 49.7847, Lng: -112.1508, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Donnacona, Quebec 46.6747 -71.7294 matched with DB +City: Donnacona, state: Quebec, Lat: 46.6747, Lng: -71.7294, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corman Park No. 344, Saskatchewan 52.2291 -106.8002 matched with DB +City: Corman Park No. 344, state: Saskatchewan, Lat: 52.2291, Lng: -106.8002, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: L’Epiphanie, Quebec 45.8482664184978 -73.506054079174 matched with DB +City: L'Epiphanie, state: Quebec, Lat: 45.8483, Lng: -73.5061, Country: CAN (Matches - province: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Perth, Ontario 43.4700 -81.2000 matched with DB +City: West Perth, state: Ontario, Lat: 43.47, Lng: -81.2, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbellton, New Brunswick 48.0050 -66.6731 matched with DB +City: Campbellton, state: New Brunswick, Lat: 48.005, Lng: -66.6731, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgewater, Nova Scotia 44.3700 -64.5200 matched with DB +City: Bridgewater, state: Nova Scotia, Lat: 44.37, Lng: -64.52, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coaldale, Alberta 49.7333 -112.6167 matched with DB +City: Coaldale, state: Alberta, Lat: 49.7333, Lng: -112.6167, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pont-Rouge, Quebec 46.7500 -71.7000 matched with DB +City: Pont-Rouge, state: Quebec, Lat: 46.75, Lng: -71.7, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Champlain, Ontario 45.5333 -74.6500 matched with DB +City: Champlain, state: Ontario, Lat: 45.5333, Lng: -74.65, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coaticook, Quebec 45.1333 -71.8000 matched with DB +City: Coaticook, state: Quebec, Lat: 45.1333, Lng: -71.8, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minto, Ontario 43.9167 -80.8667 matched with DB +City: Minto, state: Ontario, Lat: 43.9167, Lng: -80.8667, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Pêche, Quebec 45.6833 -75.9833 matched with DB +City: La Peche, state: Quebec, Lat: 45.6833, Lng: -75.9833, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shediac, New Brunswick 46.2167 -64.5333 matched with DB +City: Shediac, state: New Brunswick, Lat: 46.2167, Lng: -64.5333, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Ontario 44.1500 -81.0333 matched with DB +City: Hanover, state: Manitoba, Lat: 49.4433, Lng: -96.8492, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iqaluit, Nunavut 63.7598 -68.5107 matched with DB +City: Iqaluit, state: Nunavut, Lat: 63.7598, Lng: -68.5107, Country: CAN (Matches - province: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cornwall, Prince Edward Island 46.2407 -63.2009 matched with DB +City: Cornwall, state: Ontario, Lat: 45.0275, Lng: -74.74, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Nova Scotia 44.9803 -64.1292 matched with DB +City: Windsor, state: Ontario, Lat: 42.2833, Lng: -83.0, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Quebec 45.5667 -72.0000 matched with DB +City: Windsor, state: Ontario, Lat: 42.2833, Lng: -83.0, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Falls, New Brunswick 47.0344 -67.7394 matched with DB +City: Grand Falls, state: Newfoundland and Labrador, Lat: 48.9578, Lng: -55.6633, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cochrane, Ontario 49.0667 -81.0167 matched with DB +City: Cochrane, state: Alberta, Lat: 51.189, Lng: -114.467, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, New Brunswick 46.1522 -67.5983 matched with DB +City: Woodstock, state: Ontario, Lat: 43.1306, Lng: -80.7467, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Quebec 45.3500 -72.5167 matched with DB +City: Waterloo, state: Ontario, Lat: 43.4667, Lng: -80.5167, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Quebec 45.6667 -72.1500 matched with DB +City: Richmond, state: British Columbia, Lat: 49.1667, Lng: -123.1333, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, New Brunswick 45.4663 -66.0217 matched with DB +City: Kingston, state: Ontario, Lat: 44.3128, Lng: -76.4553, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, New Brunswick 45.8716 -66.5437 matched with DB +City: Lincoln, state: Ontario, Lat: 43.13, Lng: -79.43, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minto, New Brunswick 46.1497 -66.1067 matched with DB +City: Minto, state: Ontario, Lat: 43.9167, Lng: -80.8667, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeshore, Manitoba 51.2440 -99.6562 matched with DB +City: Lakeshore, state: Ontario, Lat: 42.2399, Lng: -82.6511, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Champlain, Quebec 46.4500 -72.3500 matched with DB +City: Champlain, state: Ontario, Lat: 45.5333, Lng: -74.65, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Newfoundland and Labrador 47.7675 -53.2411 matched with DB +City: Victoria, state: British Columbia, Lat: 48.4283, Lng: -123.3647, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelburne, Nova Scotia 43.7633 -65.3236 matched with DB +City: Shelburne, state: Ontario, Lat: 44.0833, Lng: -80.2, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, New Brunswick 46.3316 -67.3585 matched with DB +City: Brighton, state: Ontario, Lat: 44.1222, Lng: -77.7642, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, New Brunswick 45.7005 -65.8079 matched with DB +City: Springfield, state: Manitoba, Lat: 49.9292, Lng: -96.6939, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Quebec 46.0500 -74.7667 matched with DB +City: Amherst, state: Nova Scotia, Lat: 45.8167, Lng: -64.2167, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, New Brunswick 46.0776 -67.7248 matched with DB +City: Richmond, state: British Columbia, Lat: 49.1667, Lng: -123.1333, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Manitoba 49.6644 -98.9153 matched with DB +City: Victoria, state: British Columbia, Lat: 48.4283, Lng: -123.3647, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmot, New Brunswick 46.3463 -67.7099 matched with DB +City: Wilmot, state: Ontario, Lat: 43.4, Lng: -80.65, Country: CAN (Matches - province: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + diff --git a/resources/simplemaps-snapshot/city-db-creator/src/main/resources/CheckUsaCities.txt b/resources/simplemaps-snapshot/city-db-creator/src/main/resources/CheckUsaCities.txt new file mode 100644 index 00000000..2b9c42e5 --- /dev/null +++ b/resources/simplemaps-snapshot/city-db-creator/src/main/resources/CheckUsaCities.txt @@ -0,0 +1,99994 @@ +Total records: 47868 +CSV City: New York, New York 40.6943 -73.9249 matched with DB +City: New York, state: New York, Lat: 40.6943, Lng: -73.9249, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Angeles, California 34.1141 -118.4068 matched with DB +City: Los Angeles, state: California, Lat: 34.1141, Lng: -118.4068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chicago, Illinois 41.8375 -87.6866 matched with DB +City: Chicago, state: Illinois, Lat: 41.8375, Lng: -87.6866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami, Florida 25.7840 -80.2101 matched with DB +City: Miami, state: Florida, Lat: 25.784, Lng: -80.2101, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Miami, Florida 25.7840 -80.2101 matched with DB +City: Miami, state: Oklahoma, Lat: 36.8878, Lng: -94.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Texas 29.7860 -95.3885 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dallas, Texas 32.7935 -96.7667 matched with DB +City: Dallas, state: Pennsylvania, Lat: 41.3608, Lng: -75.9656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Texas 32.7935 -96.7667 matched with DB +City: Dallas, state: Georgia, Lat: 33.9152, Lng: -84.8416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Texas 32.7935 -96.7667 matched with DB +City: Dallas, state: Oregon, Lat: 44.9221, Lng: -123.313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Texas 32.7935 -96.7667 matched with DB +City: Dallas, state: Texas, Lat: 32.7935, Lng: -96.7667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Philadelphia, Pennsylvania 40.0077 -75.1339 matched with DB +City: Philadelphia, state: Pennsylvania, Lat: 40.0077, Lng: -75.1339, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Georgia 33.7628 -84.4220 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, District of Columbia 38.9047 -77.0163 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boston, Massachusetts 42.3188 -71.0852 matched with DB +City: Boston, state: Massachusetts, Lat: 42.3188, Lng: -71.0852, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phoenix, Arizona 33.5722 -112.0892 matched with DB +City: Phoenix, state: Arizona, Lat: 33.5722, Lng: -112.0892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit, Michigan 42.3834 -83.1024 matched with DB +City: Detroit, state: Michigan, Lat: 42.3834, Lng: -83.1024, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seattle, Washington 47.6211 -122.3244 matched with DB +City: Seattle, state: Washington, Lat: 47.6211, Lng: -122.3244, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Francisco, California 37.7558 -122.4449 matched with DB +City: San Francisco, state: California, Lat: 37.7558, Lng: -122.4449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Diego, California 32.8313 -117.1222 matched with DB +City: San Diego, state: California, Lat: 32.8313, Lng: -117.1222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minneapolis, Minnesota 44.9635 -93.2678 matched with DB +City: Minneapolis, state: Minnesota, Lat: 44.9635, Lng: -93.2678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tampa, Florida 27.9945 -82.4447 matched with DB +City: Tampa, state: Florida, Lat: 27.9945, Lng: -82.4447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, New York 40.6501 -73.9496 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, New York 40.6501 -73.9496 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denver, Colorado 39.7620 -104.8758 matched with DB +City: Denver, state: Colorado, Lat: 39.762, Lng: -104.8758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Queens, New York 40.7498 -73.7976 matched with DB +City: Queens, state: New York, Lat: 40.7498, Lng: -73.7976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, California 33.9381 -117.3949 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, California 33.9381 -117.3949 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, California 33.9381 -117.3949 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, California 33.9381 -117.3949 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Las Vegas, Nevada 36.2333 -115.2654 matched with DB +City: Las Vegas, state: Nevada, Lat: 36.2333, Lng: -115.2654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Las Vegas, Nevada 36.2333 -115.2654 matched with DB +City: Las Vegas, state: New Mexico, Lat: 35.6011, Lng: -105.2206, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baltimore, Maryland 39.3051 -76.6144 matched with DB +City: Baltimore, state: Maryland, Lat: 39.3051, Lng: -76.6144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Louis, Missouri 38.6359 -90.2451 matched with DB +City: St. Louis, state: Missouri, Lat: 38.6359, Lng: -90.2451, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Oregon 45.5371 -122.6500 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Oregon 45.5371 -122.6500 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Oregon 45.5371 -122.6500 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Oregon 45.5371 -122.6500 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Antonio, Texas 29.4632 -98.5238 matched with DB +City: San Antonio, state: Texas, Lat: 29.4632, Lng: -98.5238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sacramento, California 38.5677 -121.4685 matched with DB +City: Sacramento, state: California, Lat: 38.5677, Lng: -121.4685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Texas 30.3005 -97.7522 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Texas 30.3005 -97.7522 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orlando, Florida 28.4773 -81.3370 matched with DB +City: Orlando, state: Florida, Lat: 28.4773, Lng: -81.337, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Juan, Puerto Rico 18.3985 -66.0610 matched with DB +City: San Juan, state: Texas, Lat: 26.1903, Lng: -98.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Jose, California 37.3012 -121.8480 matched with DB +City: San Jose, state: California, Lat: 37.3012, Lng: -121.848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburgh, Pennsylvania 40.4397 -79.9763 matched with DB +City: Pittsburgh, state: Pennsylvania, Lat: 40.4397, Lng: -79.9763, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianapolis, Indiana 39.7771 -86.1458 matched with DB +City: Indianapolis, state: Indiana, Lat: 39.7771, Lng: -86.1458, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manhattan, New York 40.7834 -73.9662 matched with DB +City: Manhattan, state: Kansas, Lat: 39.1886, Lng: -96.6048, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, New York 40.7834 -73.9662 matched with DB +City: Manhattan, state: Illinois, Lat: 41.4274, Lng: -87.9805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, New York 40.7834 -73.9662 matched with DB +City: Manhattan, state: New York, Lat: 40.7834, Lng: -73.9662, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cincinnati, Ohio 39.1413 -84.5060 matched with DB +City: Cincinnati, state: Ohio, Lat: 39.1413, Lng: -84.506, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kansas City, Missouri 39.1238 -94.5541 matched with DB +City: Kansas City, state: Kansas, Lat: 39.1235, Lng: -94.7443, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kansas City, Missouri 39.1238 -94.5541 matched with DB +City: Kansas City, state: Missouri, Lat: 39.1238, Lng: -94.5541, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Ohio 41.4764 -81.6805 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Ohio 41.4764 -81.6805 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Ohio 41.4764 -81.6805 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Ohio 39.9862 -82.9855 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Ohio 39.9862 -82.9855 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Ohio 39.9862 -82.9855 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Ohio 39.9862 -82.9855 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Ohio 39.9862 -82.9855 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bronx, New York 40.8501 -73.8662 matched with DB +City: Bronx, state: New York, Lat: 40.8501, Lng: -73.8662, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Virginia Beach, Virginia 36.7335 -76.0435 matched with DB +City: Virginia Beach, state: Virginia, Lat: 36.7335, Lng: -76.0435, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlotte, North Carolina 35.2083 -80.8303 matched with DB +City: Charlotte, state: Michigan, Lat: 42.5662, Lng: -84.8304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charlotte, North Carolina 35.2083 -80.8303 matched with DB +City: Charlotte, state: North Carolina, Lat: 35.2083, Lng: -80.8303, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milwaukee, Wisconsin 43.0642 -87.9675 matched with DB +City: Milwaukee, state: Wisconsin, Lat: 43.0642, Lng: -87.9675, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Providence, Rhode Island 41.8230 -71.4187 matched with DB +City: Providence, state: Rhode Island, Lat: 41.823, Lng: -71.4187, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Florida 30.3322 -81.6749 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Florida 30.3322 -81.6749 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Florida 30.3322 -81.6749 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Florida 30.3322 -81.6749 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Florida 30.3322 -81.6749 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Florida 30.3322 -81.6749 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Tennessee 36.1715 -86.7842 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salt Lake City, Utah 40.7776 -111.9311 matched with DB +City: Salt Lake City, state: Utah, Lat: 40.7776, Lng: -111.9311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raleigh, North Carolina 35.8324 -78.6429 matched with DB +City: Raleigh, state: North Carolina, Lat: 35.8324, Lng: -78.6429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Virginia 37.5295 -77.4756 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Virginia 37.5295 -77.4756 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Virginia 37.5295 -77.4756 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Virginia 37.5295 -77.4756 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Virginia 37.5295 -77.4756 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Tennessee 35.1087 -89.9663 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Tennessee 35.1087 -89.9663 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oklahoma City, Oklahoma 35.4676 -97.5136 matched with DB +City: Oklahoma City, state: Oklahoma, Lat: 35.4676, Lng: -97.5136, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Connecticut 41.7661 -72.6834 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Connecticut 41.7661 -72.6834 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Connecticut 41.7661 -72.6834 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Kentucky 38.1663 -85.6485 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Kentucky 38.1663 -85.6485 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Kentucky 38.1663 -85.6485 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, New York 42.9018 -78.8487 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, New York 42.9018 -78.8487 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Orleans, Louisiana 30.0687 -89.9288 matched with DB +City: New Orleans, state: Louisiana, Lat: 30.0687, Lng: -89.9288, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Worth, Texas 32.7817 -97.3474 matched with DB +City: Fort Worth, state: Texas, Lat: 32.7817, Lng: -97.3474, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Connecticut 41.1918 -73.1954 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Connecticut 41.1918 -73.1954 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tucson, Arizona 32.1541 -110.8787 matched with DB +City: Tucson, state: Arizona, Lat: 32.1541, Lng: -110.8787, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Paso, Texas 31.8476 -106.4300 matched with DB +City: El Paso, state: Texas, Lat: 31.8476, Lng: -106.43, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Omaha, Nebraska 41.2627 -96.0529 matched with DB +City: Omaha, state: Nebraska, Lat: 41.2627, Lng: -96.0529, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McAllen, Texas 26.2252 -98.2467 matched with DB +City: McAllen, state: Texas, Lat: 26.2252, Lng: -98.2467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Birmingham, Alabama 33.5279 -86.7971 matched with DB +City: Birmingham, state: Michigan, Lat: 42.5446, Lng: -83.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Birmingham, Alabama 33.5279 -86.7971 matched with DB +City: Birmingham, state: Alabama, Lat: 33.5279, Lng: -86.7971, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albuquerque, New Mexico 35.1054 -106.6465 matched with DB +City: Albuquerque, state: New Mexico, Lat: 35.1054, Lng: -106.6465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tulsa, Oklahoma 36.1283 -95.9042 matched with DB +City: Tulsa, state: Oklahoma, Lat: 36.1283, Lng: -95.9042, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fresno, California 36.7830 -119.7939 matched with DB +City: Fresno, state: Texas, Lat: 29.5357, Lng: -95.4696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fresno, California 36.7830 -119.7939 matched with DB +City: Fresno, state: California, Lat: 36.783, Lng: -119.7939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, South Carolina 32.8168 -79.9687 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, South Carolina 32.8168 -79.9687 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, South Carolina 32.8168 -79.9687 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, New York 43.1680 -77.6162 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, New York 43.1680 -77.6162 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, New York 43.1680 -77.6162 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, New York 43.1680 -77.6162 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Ohio 39.7805 -84.2003 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Ohio 39.7805 -84.2003 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Ohio 39.7805 -84.2003 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cape Coral, Florida 26.6443 -81.9957 matched with DB +City: Cape Coral, state: Florida, Lat: 26.6443, Lng: -81.9957, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission Viejo, California 33.6096 -117.6551 matched with DB +City: Mission Viejo, state: California, Lat: 33.6096, Lng: -117.6551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colorado Springs, Colorado 38.8674 -104.7605 matched with DB +City: Colorado Springs, state: Colorado, Lat: 38.8674, Lng: -104.7605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baton Rouge, Louisiana 30.4420 -91.1311 matched with DB +City: Baton Rouge, state: Louisiana, Lat: 30.442, Lng: -91.1311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allentown, Pennsylvania 40.5961 -75.4756 matched with DB +City: Allentown, state: Pennsylvania, Lat: 40.5961, Lng: -75.4756, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogden, Utah 41.2279 -111.9682 matched with DB +City: Ogden, state: North Carolina, Lat: 34.2656, Lng: -77.7966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Utah 41.2279 -111.9682 matched with DB +City: Ogden, state: Utah, Lat: 41.2279, Lng: -111.9682, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Utah 41.2279 -111.9682 matched with DB +City: Ogden, state: New York, Lat: 43.1646, Lng: -77.822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Provo, Utah 40.2457 -111.6457 matched with DB +City: Provo, state: Utah, Lat: 40.2457, Lng: -111.6457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knoxville, Tennessee 35.9692 -83.9496 matched with DB +City: Knoxville, state: Tennessee, Lat: 35.9692, Lng: -83.9496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Rapids, Michigan 42.9619 -85.6562 matched with DB +City: Grand Rapids, state: Michigan, Lat: 42.9619, Lng: -85.6562, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grand Rapids, Michigan 42.9619 -85.6562 matched with DB +City: Grand Rapids, state: Minnesota, Lat: 47.238, Lng: -93.5327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, South Carolina 34.0378 -80.9036 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Carolina 34.0378 -80.9036 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Carolina 34.0378 -80.9036 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Carolina 34.0378 -80.9036 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Carolina 34.0378 -80.9036 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Carolina 34.0378 -80.9036 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, New York 42.6664 -73.7987 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, New York 42.6664 -73.7987 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, New York 42.6664 -73.7987 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, New York 42.6664 -73.7987 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bakersfield, California 35.3529 -119.0359 matched with DB +City: Bakersfield, state: California, Lat: 35.3529, Lng: -119.0359, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Connecticut 41.3113 -72.9246 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Connecticut 41.3113 -72.9246 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Des Moines, Iowa 41.5725 -93.6105 matched with DB +City: Des Moines, state: Iowa, Lat: 41.5725, Lng: -93.6105, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Des Moines, Iowa 41.5725 -93.6105 matched with DB +City: Des Moines, state: Washington, Lat: 47.3914, Lng: -122.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Ohio 41.0798 -81.5219 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Bay, Florida 27.9631 -80.6593 matched with DB +City: Palm Bay, state: Florida, Lat: 27.9631, Lng: -80.6593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, California 37.9722 -122.0016 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, California 37.9722 -122.0016 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, California 37.9722 -122.0016 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, California 37.9722 -122.0016 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, California 37.9722 -122.0016 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, California 37.9722 -122.0016 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wichita, Kansas 37.6895 -97.3443 matched with DB +City: Wichita, state: Kansas, Lat: 37.6895, Lng: -97.3443, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mesa, Arizona 33.4015 -111.7178 matched with DB +City: Mesa, state: Arizona, Lat: 33.4015, Lng: -111.7178, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Pennsylvania 40.2752 -76.8843 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Pennsylvania 40.2752 -76.8843 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Staten Island, New York 40.5834 -74.1496 matched with DB +City: Staten Island, state: New York, Lat: 40.5834, Lng: -74.1496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toledo, Ohio 41.6638 -83.5827 matched with DB +City: Toledo, state: Ohio, Lat: 41.6638, Lng: -83.5827, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worcester, Massachusetts 42.2705 -71.8079 matched with DB +City: Worcester, state: Massachusetts, Lat: 42.2705, Lng: -71.8079, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worcester, Massachusetts 42.2705 -71.8079 matched with DB +City: Worcester, state: Pennsylvania, Lat: 40.1899, Lng: -75.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, California 33.7977 -118.1670 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, California 33.7977 -118.1670 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, California 33.7977 -118.1670 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port St. Lucie, Florida 27.2796 -80.3884 matched with DB +City: Port St. Lucie, state: Florida, Lat: 27.2796, Lng: -80.3884, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Rock, Arkansas 34.7256 -92.3577 matched with DB +City: Little Rock, state: Arkansas, Lat: 34.7256, Lng: -92.3577, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reno, Nevada 39.5497 -119.8483 matched with DB +City: Reno, state: Nevada, Lat: 39.5497, Lng: -119.8483, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spokane, Washington 47.6671 -117.4330 matched with DB +City: Spokane, state: Washington, Lat: 47.6671, Lng: -117.433, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Wisconsin 43.0822 -89.3930 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Wisconsin 43.0822 -89.3930 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Wisconsin 43.0822 -89.3930 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Wisconsin 43.0822 -89.3930 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Wisconsin 43.0822 -89.3930 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boise, Idaho 43.6005 -116.2308 matched with DB +City: Boise, state: Idaho, Lat: 43.6005, Lng: -116.2308, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bonita Springs, Florida 26.3558 -81.7859 matched with DB +City: Bonita Springs, state: Florida, Lat: 26.3558, Lng: -81.7859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Texas 33.2175 -97.1418 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, California 37.7904 -122.2166 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, California 37.7904 -122.2166 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, California 37.7904 -122.2166 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Massachusetts 42.1155 -72.5395 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Georgia 33.3645 -82.0708 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Georgia 33.3645 -82.0708 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Georgia 33.3645 -82.0708 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kissimmee, Florida 28.3041 -81.4169 matched with DB +City: Kissimmee, state: Florida, Lat: 28.3041, Lng: -81.4169, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winston-Salem, North Carolina 36.1029 -80.2610 matched with DB +City: Winston-Salem, state: North Carolina, Lat: 36.1029, Lng: -80.261, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, California 37.9765 -121.3109 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, New York 43.0407 -76.1437 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, New York 43.0407 -76.1437 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chattanooga, Tennessee 35.0660 -85.2481 matched with DB +City: Chattanooga, state: Tennessee, Lat: 35.066, Lng: -85.2481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Pennsylvania 40.0420 -76.3012 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Pennsylvania 40.0420 -76.3012 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Pennsylvania 40.0420 -76.3012 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Pennsylvania 40.0420 -76.3012 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Pennsylvania 40.0420 -76.3012 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Pennsylvania 40.0420 -76.3012 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, South Carolina 34.8354 -82.3646 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durham, North Carolina 35.9792 -78.9022 matched with DB +City: Durham, state: North Carolina, Lat: 35.9792, Lng: -78.9022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Durham, North Carolina 35.9792 -78.9022 matched with DB +City: Durham, state: New Hampshire, Lat: 43.1174, Lng: -70.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pensacola, Florida 30.4413 -87.1911 matched with DB +City: Pensacola, state: Florida, Lat: 30.4413, Lng: -87.1911, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Arkansas 36.0714 -94.1661 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Arkansas 36.0714 -94.1661 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Arkansas 36.0714 -94.1661 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Texas 32.6998 -97.1250 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Texas 32.6998 -97.1250 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Texas 32.6998 -97.1250 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Texas 32.6998 -97.1250 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Texas 32.6998 -97.1250 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Colorado 39.7083 -104.7237 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Colorado 39.7083 -104.7237 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Colorado 39.7083 -104.7237 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Colorado 39.7083 -104.7237 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxnard, California 34.1964 -119.1815 matched with DB +City: Oxnard, state: California, Lat: 34.1964, Lng: -119.1815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indio, California 33.7346 -116.2346 matched with DB +City: Indio, state: California, Lat: 33.7346, Lng: -116.2346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scranton, Pennsylvania 41.4044 -75.6649 matched with DB +City: Scranton, state: Pennsylvania, Lat: 41.4044, Lng: -75.6649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victorville, California 34.5277 -117.3536 matched with DB +City: Victorville, state: California, Lat: 34.5277, Lng: -117.3536, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, New Jersey 40.2237 -74.7641 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, New Jersey 40.2237 -74.7641 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, New Jersey 40.2237 -74.7641 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Modesto, California 37.6375 -121.0028 matched with DB +City: Modesto, state: California, Lat: 37.6375, Lng: -121.0028, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Alabama 34.6981 -86.6412 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Alabama 34.6981 -86.6412 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Honolulu, Hawaii 21.3294 -157.8460 matched with DB +City: Honolulu, state: Hawaii, Lat: 21.3294, Lng: -157.846, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, North Carolina 36.0956 -79.8271 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anaheim, California 33.8390 -117.8574 matched with DB +City: Anaheim, state: California, Lat: 33.839, Lng: -117.8574, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corpus Christi, Texas 27.7254 -97.3767 matched with DB +City: Corpus Christi, state: Texas, Lat: 27.7254, Lng: -97.3767, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Wayne, Indiana 41.0888 -85.1436 matched with DB +City: Fort Wayne, state: Indiana, Lat: 41.0888, Lng: -85.1436, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Collins, Colorado 40.5477 -105.0656 matched with DB +City: Fort Collins, state: Colorado, Lat: 40.5477, Lng: -105.0656, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Mississippi 32.3157 -90.2125 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Myrtle Beach, South Carolina 33.7094 -78.8844 matched with DB +City: Myrtle Beach, state: South Carolina, Lat: 33.7094, Lng: -78.8844, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, North Carolina 35.0850 -78.9772 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, North Carolina 35.0850 -78.9772 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, North Carolina 35.0850 -78.9772 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antioch, California 37.9787 -121.7960 matched with DB +City: Antioch, state: Illinois, Lat: 42.4742, Lng: -88.0721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Antioch, California 37.9787 -121.7960 matched with DB +City: Antioch, state: California, Lat: 37.9787, Lng: -121.796, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, Michigan 42.7142 -84.5601 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Michigan 42.7142 -84.5601 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Michigan 42.7142 -84.5601 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Michigan 42.7142 -84.5601 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Kentucky 38.0423 -84.4587 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Kentucky 38.0423 -84.4587 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Kentucky 38.0423 -84.4587 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Kentucky 38.0423 -84.4587 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Kentucky 38.0423 -84.4587 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mobile, Alabama 30.6782 -88.1162 matched with DB +City: Mobile, state: Alabama, Lat: 30.6782, Lng: -88.1162, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngstown, Ohio 41.0993 -80.6463 matched with DB +City: Youngstown, state: Ohio, Lat: 41.0993, Lng: -80.6463, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Nevada 36.0133 -115.0381 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Nevada 36.0133 -115.0381 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Nevada 36.0133 -115.0381 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Nevada 36.0133 -115.0381 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savannah, Georgia 32.0286 -81.1821 matched with DB +City: Savannah, state: Georgia, Lat: 32.0286, Lng: -81.1821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poughkeepsie, New York 41.6950 -73.9211 matched with DB +City: Poughkeepsie, state: New York, Lat: 41.695, Lng: -73.9211, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Ana, California 33.7367 -117.8819 matched with DB +City: Santa Ana, state: California, Lat: 33.7367, Lng: -117.8819, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ann Arbor, Michigan 42.2759 -83.7310 matched with DB +City: Ann Arbor, state: Michigan, Lat: 42.2759, Lng: -83.731, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Minnesota 44.9478 -93.1039 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, New Jersey 40.7245 -74.1725 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New Jersey 40.7245 -74.1725 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New Jersey 40.7245 -74.1725 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New Jersey 40.7245 -74.1725 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New Jersey 40.7245 -74.1725 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvine, California 33.6772 -117.7738 matched with DB +City: Irvine, state: California, Lat: 33.6772, Lng: -117.7738, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Rosa, California 38.4458 -122.7067 matched with DB +City: Santa Rosa, state: California, Lat: 38.4458, Lng: -122.7067, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Ohio 40.8078 -81.3676 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Ohio 40.8078 -81.3676 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Ohio 40.8078 -81.3676 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Ohio 40.8078 -81.3676 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Ohio 40.8078 -81.3676 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Ohio 40.8078 -81.3676 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Asheville, North Carolina 35.5707 -82.5537 matched with DB +City: Asheville, state: North Carolina, Lat: 35.5707, Lng: -82.5537, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flint, Michigan 43.0236 -83.6921 matched with DB +City: Flint, state: Michigan, Lat: 43.0236, Lng: -83.6921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winter Haven, Florida 28.0118 -81.7014 matched with DB +City: Winter Haven, state: Florida, Lat: 28.0118, Lng: -81.7014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anchorage, Alaska 61.1508 -149.1091 matched with DB +City: Anchorage, state: Alaska, Lat: 61.1508, Lng: -149.1091, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Nebraska 40.8099 -96.6784 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Nebraska 40.8099 -96.6784 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Nebraska 40.8099 -96.6784 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Nebraska 40.8099 -96.6784 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, North Carolina 35.3933 -80.6369 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, North Carolina 35.3933 -80.6369 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, North Carolina 35.3933 -80.6369 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, North Carolina 35.3933 -80.6369 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, North Carolina 35.3933 -80.6369 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, North Carolina 35.3933 -80.6369 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jersey City, New Jersey 40.7184 -74.0686 matched with DB +City: Jersey City, state: New Jersey, Lat: 40.7184, Lng: -74.0686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Missouri 37.1943 -93.2916 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plano, Texas 33.0502 -96.7486 matched with DB +City: Plano, state: Illinois, Lat: 41.6757, Lng: -88.5293, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plano, Texas 33.0502 -96.7486 matched with DB +City: Plano, state: Texas, Lat: 33.0502, Lng: -96.7486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shreveport, Louisiana 32.4653 -93.7955 matched with DB +City: Shreveport, state: Louisiana, Lat: 32.4653, Lng: -93.7955, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, Iowa 41.5565 -90.6053 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, Iowa 41.5565 -90.6053 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lubbock, Texas 33.5657 -101.8879 matched with DB +City: Lubbock, state: Texas, Lat: 33.5657, Lng: -101.8879, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland, Florida 28.0557 -81.9545 matched with DB +City: Lakeland, state: Tennessee, Lat: 35.2585, Lng: -89.7308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeland, Florida 28.0557 -81.9545 matched with DB +City: Lakeland, state: Florida, Lat: 28.0557, Lng: -81.9545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Bend, Indiana 41.6767 -86.2696 matched with DB +City: South Bend, state: Indiana, Lat: 41.6767, Lng: -86.2696, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chula Vista, California 32.6281 -117.0144 matched with DB +City: Chula Vista, state: California, Lat: 32.6281, Lng: -117.0144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chandler, Arizona 33.2825 -111.8514 matched with DB +City: Chandler, state: Arizona, Lat: 33.2825, Lng: -111.8514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Illinois 42.2596 -89.0640 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reading, Pennsylvania 40.3400 -75.9267 matched with DB +City: Reading, state: Pennsylvania, Lat: 40.34, Lng: -75.9267, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Pennsylvania 40.3400 -75.9267 matched with DB +City: Reading, state: Ohio, Lat: 39.2242, Lng: -84.4333, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Pennsylvania 40.3400 -75.9267 matched with DB +City: Reading, state: Massachusetts, Lat: 42.5351, Lng: -71.1056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eugene, Oregon 44.0564 -123.1174 matched with DB +City: Eugene, state: Oregon, Lat: 44.0564, Lng: -123.1174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmington, North Carolina 34.2099 -77.8866 matched with DB +City: Wilmington, state: Delaware, Lat: 39.7415, Lng: -75.5416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, North Carolina 34.2099 -77.8866 matched with DB +City: Wilmington, state: Ohio, Lat: 39.4362, Lng: -83.8141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, North Carolina 34.2099 -77.8866 matched with DB +City: Wilmington, state: North Carolina, Lat: 34.2099, Lng: -77.8866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, North Carolina 34.2099 -77.8866 matched with DB +City: Wilmington, state: Massachusetts, Lat: 42.5609, Lng: -71.1654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clarita, California 34.4175 -118.4964 matched with DB +City: Santa Clarita, state: California, Lat: 34.4175, Lng: -118.4964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, Arizona 33.3100 -111.7463 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Oregon 44.9233 -123.0244 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Oregon 44.9233 -123.0244 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Oregon 44.9233 -123.0244 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Oregon 44.9233 -123.0244 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Oregon 44.9233 -123.0244 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Oregon 44.9233 -123.0244 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Killeen, Texas 31.0753 -97.7297 matched with DB +City: Killeen, state: Texas, Lat: 31.0753, Lng: -97.7297, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Round Lake Beach, Illinois 42.3791 -88.0811 matched with DB +City: Round Lake Beach, state: Illinois, Lat: 42.3791, Lng: -88.0811, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Georgia 32.5100 -84.8771 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Georgia 32.5100 -84.8771 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Georgia 32.5100 -84.8771 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Georgia 32.5100 -84.8771 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Georgia 32.5100 -84.8771 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Las Vegas, Nevada 36.2883 -115.0888 matched with DB +City: North Las Vegas, state: Nevada, Lat: 36.2883, Lng: -115.0888, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennewick, Washington 46.1978 -119.1732 matched with DB +City: Kennewick, state: Washington, Lat: 46.1978, Lng: -119.1732, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Petersburg, Florida 27.7931 -82.6652 matched with DB +City: St. Petersburg, state: Florida, Lat: 27.7931, Lng: -82.6652, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tallahassee, Florida 30.4551 -84.2527 matched with DB +City: Tallahassee, state: Florida, Lat: 30.4551, Lng: -84.2527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laredo, Texas 27.5625 -99.4874 matched with DB +City: Laredo, state: Texas, Lat: 27.5625, Lng: -99.4874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irving, Texas 32.8583 -96.9702 matched with DB +City: Irving, state: Texas, Lat: 32.8583, Lng: -96.9702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peoria, Illinois 40.7520 -89.6154 matched with DB +City: Peoria, state: Illinois, Lat: 40.752, Lng: -89.6154, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peoria, Illinois 40.7520 -89.6154 matched with DB +City: Peoria, state: Arizona, Lat: 33.7843, Lng: -112.2989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Alabama 32.3482 -86.2668 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Alabama 32.3482 -86.2668 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Alabama 32.3482 -86.2668 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Alabama 32.3482 -86.2668 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Alabama 32.3482 -86.2668 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Alabama 32.3482 -86.2668 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesapeake, Virginia 36.6778 -76.3023 matched with DB +City: Chesapeake, state: Virginia, Lat: 36.6778, Lng: -76.3023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Arizona 33.5791 -112.2311 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Arizona 33.5791 -112.2311 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Arizona 33.5791 -112.2311 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, Pennsylvania 39.9651 -76.7315 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Pennsylvania 39.9651 -76.7315 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Pennsylvania 39.9651 -76.7315 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashua, New Hampshire 42.7491 -71.4910 matched with DB +City: Nashua, state: New Hampshire, Lat: 42.7491, Lng: -71.491, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Texas 32.9100 -96.6304 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scottsdale, Arizona 33.6872 -111.8651 matched with DB +City: Scottsdale, state: Arizona, Lat: 33.6872, Lng: -111.8651, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Louisiana 30.2082 -92.0325 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Louisiana 30.2082 -92.0325 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Louisiana 30.2082 -92.0325 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Louisiana 30.2082 -92.0325 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norfolk, Virginia 36.8945 -76.2590 matched with DB +City: Norfolk, state: Virginia, Lat: 36.8945, Lng: -76.259, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norfolk, Virginia 36.8945 -76.2590 matched with DB +City: Norfolk, state: Nebraska, Lat: 42.0324, Lng: -97.4217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norfolk, Virginia 36.8945 -76.2590 matched with DB +City: Norfolk, state: Massachusetts, Lat: 42.1163, Lng: -71.3295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Virginia 38.8786 -77.1011 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Virginia 38.8786 -77.1011 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Virginia 38.8786 -77.1011 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Virginia 38.8786 -77.1011 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Virginia 38.8786 -77.1011 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Appleton, Wisconsin 44.2780 -88.3892 matched with DB +City: Appleton, state: Wisconsin, Lat: 44.278, Lng: -88.3892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Hill, South Carolina 34.9415 -81.0241 matched with DB +City: Rock Hill, state: South Carolina, Lat: 34.9415, Lng: -81.0241, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, California 37.5265 -121.9843 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, California 37.5265 -121.9843 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, California 37.5265 -121.9843 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fargo, North Dakota 46.8651 -96.8292 matched with DB +City: Fargo, state: North Dakota, Lat: 46.8651, Lng: -96.8292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gulfport, Mississippi 30.4274 -89.0704 matched with DB +City: Gulfport, state: Mississippi, Lat: 30.4274, Lng: -89.0704, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gulfport, Mississippi 30.4274 -89.0704 matched with DB +City: Gulfport, state: Florida, Lat: 27.7463, Lng: -82.7099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bremerton, Washington 47.5436 -122.7121 matched with DB +City: Bremerton, state: Washington, Lat: 47.5436, Lng: -122.7121, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Bay, Wisconsin 44.5148 -87.9895 matched with DB +City: Green Bay, state: Wisconsin, Lat: 44.5148, Lng: -87.9895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Nevada 36.0091 -115.2278 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Nevada 36.0091 -115.2278 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hialeah, Florida 25.8696 -80.3045 matched with DB +City: Hialeah, state: Florida, Lat: 25.8696, Lng: -80.3045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deltona, Florida 28.9050 -81.2137 matched with DB +City: Deltona, state: Florida, Lat: 28.905, Lng: -81.2137, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Bernardino, California 34.1416 -117.2943 matched with DB +City: San Bernardino, state: California, Lat: 34.1416, Lng: -117.2943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gainesville, Florida 29.6804 -82.3459 matched with DB +City: Gainesville, state: Virginia, Lat: 38.7931, Lng: -77.6347, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Florida 29.6804 -82.3459 matched with DB +City: Gainesville, state: Georgia, Lat: 34.2902, Lng: -83.8294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Florida 29.6804 -82.3459 matched with DB +City: Gainesville, state: Florida, Lat: 29.6804, Lng: -82.3459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Florida 29.6804 -82.3459 matched with DB +City: Gainesville, state: Texas, Lat: 33.639, Lng: -97.1487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Nevada 36.0952 -115.2636 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Nevada 36.0952 -115.2636 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Nevada 36.0952 -115.2636 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tacoma, Washington 47.2431 -122.4531 matched with DB +City: Tacoma, state: Washington, Lat: 47.2431, Lng: -122.4531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke, Virginia 37.2785 -79.9581 matched with DB +City: Roanoke, state: Virginia, Lat: 37.2785, Lng: -79.9581, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roanoke, Virginia 37.2785 -79.9581 matched with DB +City: Roanoke, state: Texas, Lat: 33.0144, Lng: -97.2276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Texas 25.9975 -97.4580 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Texas 25.9975 -97.4580 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Texas 25.9975 -97.4580 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: College Station, Texas 30.5852 -96.2959 matched with DB +City: College Station, state: Texas, Lat: 30.5852, Lng: -96.2959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olympia, Washington 47.0417 -122.8959 matched with DB +City: Olympia, state: Washington, Lat: 47.0417, Lng: -122.8959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Tennessee 36.5692 -87.3413 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Tennessee 36.5692 -87.3413 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Tennessee 36.5692 -87.3413 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yonkers, New York 40.9466 -73.8673 matched with DB +City: Yonkers, state: New York, Lat: 40.9466, Lng: -73.8673, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moreno Valley, California 33.9244 -117.2045 matched with DB +City: Moreno Valley, state: California, Lat: 33.9244, Lng: -117.2045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thousand Oaks, California 34.1914 -118.8756 matched with DB +City: Thousand Oaks, state: California, Lat: 34.1914, Lng: -118.8756, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Maine 43.6773 -70.2715 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Maine 43.6773 -70.2715 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Maine 43.6773 -70.2715 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Maine 43.6773 -70.2715 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fontana, California 34.0968 -117.4599 matched with DB +City: Fontana, state: California, Lat: 34.0968, Lng: -117.4599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory, North Carolina 35.7410 -81.3223 matched with DB +City: Hickory, state: North Carolina, Lat: 35.741, Lng: -81.3223, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amarillo, Texas 35.1984 -101.8316 matched with DB +City: Amarillo, state: Texas, Lat: 35.1984, Lng: -101.8316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sioux Falls, South Dakota 43.5396 -96.7311 matched with DB +City: Sioux Falls, state: South Dakota, Lat: 43.5396, Lng: -96.7311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Indiana 37.9881 -87.5341 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, West Virginia 38.4109 -82.4345 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, West Virginia 38.4109 -82.4345 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, West Virginia 38.4109 -82.4345 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, West Virginia 38.4109 -82.4345 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterbury, Connecticut 41.5582 -73.0361 matched with DB +City: Waterbury, state: Connecticut, Lat: 41.5582, Lng: -73.0361, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frisco, Texas 33.1560 -96.8216 matched with DB +City: Frisco, state: Texas, Lat: 33.156, Lng: -96.8216, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lorain, Ohio 41.4409 -82.1840 matched with DB +City: Lorain, state: Ohio, Lat: 41.4409, Lng: -82.184, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kalamazoo, Michigan 42.2749 -85.5882 matched with DB +City: Kalamazoo, state: Michigan, Lat: 42.2749, Lng: -85.5882, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galveston, Texas 29.2484 -94.8913 matched with DB +City: Galveston, state: Texas, Lat: 29.2484, Lng: -94.8913, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spartanburg, South Carolina 34.9442 -81.9251 matched with DB +City: Spartanburg, state: South Carolina, Lat: 34.9442, Lng: -81.9251, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Barbara, California 34.4285 -119.7202 matched with DB +City: Santa Barbara, state: California, Lat: 34.4285, Lng: -119.7202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunrise Manor, Nevada 36.1783 -115.0487 matched with DB +City: Sunrise Manor, state: Nevada, Lat: 36.1783, Lng: -115.0487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington Beach, California 33.6960 -118.0018 matched with DB +City: Huntington Beach, state: California, Lat: 33.696, Lng: -118.0018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Prairie, Texas 32.6871 -97.0208 matched with DB +City: Grand Prairie, state: Texas, Lat: 32.6871, Lng: -97.0208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Overland Park, Kansas 38.8870 -94.6870 matched with DB +City: Overland Park, state: Kansas, Lat: 38.887, Lng: -94.687, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McKinney, Texas 33.2016 -96.6670 matched with DB +City: McKinney, state: Texas, Lat: 33.2016, Lng: -96.667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waco, Texas 31.5599 -97.1882 matched with DB +City: Waco, state: Texas, Lat: 31.5599, Lng: -97.1882, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hagerstown, Maryland 39.6401 -77.7217 matched with DB +City: Hagerstown, state: Maryland, Lat: 39.6401, Lng: -77.7217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, California 34.1819 -118.2468 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, California 34.1819 -118.2468 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, California 34.1819 -118.2468 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nampa, Idaho 43.5844 -116.5638 matched with DB +City: Nampa, state: Idaho, Lat: 43.5844, Lng: -116.5638, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peoria, Arizona 33.7843 -112.2989 matched with DB +City: Peoria, state: Illinois, Lat: 40.752, Lng: -89.6154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peoria, Arizona 33.7843 -112.2989 matched with DB +City: Peoria, state: Arizona, Lat: 33.7843, Lng: -112.2989, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Rapids, Iowa 41.9662 -91.6783 matched with DB +City: Cedar Rapids, state: Iowa, Lat: 41.9662, Lng: -91.6783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vancouver, Washington 45.6366 -122.5967 matched with DB +City: Vancouver, state: Washington, Lat: 45.6366, Lng: -122.5967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Nevada 36.0872 -115.1355 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocala, Florida 29.1780 -82.1511 matched with DB +City: Ocala, state: Florida, Lat: 29.178, Lng: -82.1511, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erie, Pennsylvania 42.1167 -80.0733 matched with DB +City: Erie, state: Pennsylvania, Lat: 42.1167, Lng: -80.0733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Erie, Pennsylvania 42.1167 -80.0733 matched with DB +City: Erie, state: Colorado, Lat: 40.0404, Lng: -105.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport News, Virginia 37.1051 -76.5185 matched with DB +City: Newport News, state: Virginia, Lat: 37.1051, Lng: -76.5185, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frederick, Maryland 39.4337 -77.4141 matched with DB +City: Frederick, state: Maryland, Lat: 39.4337, Lng: -77.4141, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frederick, Maryland 39.4337 -77.4141 matched with DB +City: Frederick, state: Colorado, Lat: 40.1088, Lng: -104.9701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murfreesboro, Tennessee 35.8490 -86.4121 matched with DB +City: Murfreesboro, state: Tennessee, Lat: 35.849, Lng: -86.4121, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Lauderdale, Florida 26.1412 -80.1464 matched with DB +City: Fort Lauderdale, state: Florida, Lat: 26.1412, Lng: -80.1464, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Illinois 41.7638 -88.2902 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Illinois 41.7638 -88.2902 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Illinois 41.7638 -88.2902 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Illinois 41.7638 -88.2902 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tempe, Arizona 33.3881 -111.9319 matched with DB +City: Tempe, state: Arizona, Lat: 33.3881, Lng: -111.9319, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danbury, Connecticut 41.4015 -73.4709 matched with DB +City: Danbury, state: Connecticut, Lat: 41.4015, Lng: -73.4709, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Florida 28.4798 -82.5300 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Florida 28.4798 -82.5300 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gastonia, North Carolina 35.2494 -81.1854 matched with DB +City: Gastonia, state: North Carolina, Lat: 35.2494, Lng: -81.1854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salinas, California 36.6883 -121.6317 matched with DB +City: Salinas, state: California, Lat: 36.6883, Lng: -121.6317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Virginia 38.2992 -77.4872 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Virginia 38.2992 -77.4872 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ontario, California 34.0393 -117.6064 matched with DB +City: Ontario, state: Oregon, Lat: 44.0259, Lng: -116.976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, California 34.0393 -117.6064 matched with DB +City: Ontario, state: California, Lat: 34.0393, Lng: -117.6064, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, California 34.0393 -117.6064 matched with DB +City: Ontario, state: New York, Lat: 43.2408, Lng: -77.314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk Grove, California 38.4161 -121.3842 matched with DB +City: Elk Grove, state: California, Lat: 38.4161, Lng: -121.3842, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gainesville, Georgia 34.2902 -83.8294 matched with DB +City: Gainesville, state: Virginia, Lat: 38.7931, Lng: -77.6347, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Georgia 34.2902 -83.8294 matched with DB +City: Gainesville, state: Georgia, Lat: 34.2902, Lng: -83.8294, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Georgia 34.2902 -83.8294 matched with DB +City: Gainesville, state: Florida, Lat: 29.6804, Lng: -82.3459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Georgia 34.2902 -83.8294 matched with DB +City: Gainesville, state: Texas, Lat: 33.639, Lng: -97.1487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cary, North Carolina 35.7819 -78.8195 matched with DB +City: Cary, state: Illinois, Lat: 42.2129, Lng: -88.2494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cary, North Carolina 35.7819 -78.8195 matched with DB +City: Cary, state: North Carolina, Lat: 35.7819, Lng: -78.8195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho Cucamonga, California 34.1247 -117.5667 matched with DB +City: Rancho Cucamonga, state: California, Lat: 34.1247, Lng: -117.5667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oceanside, California 33.2247 -117.3083 matched with DB +City: Oceanside, state: New York, Lat: 40.6328, Lng: -73.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oceanside, California 33.2247 -117.3083 matched with DB +City: Oceanside, state: California, Lat: 33.2247, Lng: -117.3083, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden Grove, California 33.7787 -117.9601 matched with DB +City: Garden Grove, state: California, Lat: 33.7787, Lng: -117.9601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, California 34.6935 -118.1753 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, California 34.6935 -118.1753 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, California 34.6935 -118.1753 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, California 34.6935 -118.1753 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, California 34.6935 -118.1753 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, California 34.6935 -118.1753 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hemet, California 33.7341 -116.9969 matched with DB +City: Hemet, state: California, Lat: 33.7341, Lng: -116.9969, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pembroke Pines, Florida 26.0128 -80.3382 matched with DB +City: Pembroke Pines, state: Florida, Lat: 26.0128, Lng: -80.3382, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Panama City, Florida 30.1995 -85.6003 matched with DB +City: Panama City, state: Florida, Lat: 30.1995, Lng: -85.6003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vallejo, California 38.1125 -122.2342 matched with DB +City: Vallejo, state: California, Lat: 38.1125, Lng: -122.2342, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, New Hampshire 42.9848 -71.4447 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, New Hampshire 42.9848 -71.4447 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, New Hampshire 42.9848 -71.4447 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, New Hampshire 42.9848 -71.4447 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, New Hampshire 42.9848 -71.4447 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, New Hampshire 42.9848 -71.4447 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medford, Oregon 42.3372 -122.8540 matched with DB +City: Medford, state: Massachusetts, Lat: 42.4234, Lng: -71.1087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Oregon 42.3372 -122.8540 matched with DB +City: Medford, state: New York, Lat: 40.822, Lng: -72.9859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Oregon 42.3372 -122.8540 matched with DB +City: Medford, state: Oregon, Lat: 42.3372, Lng: -122.854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Oregon 42.3372 -122.8540 matched with DB +City: Medford, state: New Jersey, Lat: 39.8639, Lng: -74.8231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mauldin, South Carolina 34.7821 -82.3032 matched with DB +City: Mauldin, state: South Carolina, Lat: 34.7821, Lng: -82.3032, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Cruz, California 36.9789 -122.0346 matched with DB +City: Santa Cruz, state: California, Lat: 36.9789, Lng: -122.0346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmdale, California 34.5944 -118.1057 matched with DB +City: Palmdale, state: California, Lat: 34.5944, Lng: -118.1057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwich, Connecticut 41.5495 -72.0882 matched with DB +City: Norwich, state: Connecticut, Lat: 41.5495, Lng: -72.0882, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muskegon, Michigan 43.2281 -86.2562 matched with DB +City: Muskegon, state: Michigan, Lat: 43.2281, Lng: -86.2562, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, Florida 28.7672 -81.8962 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, Florida 28.7672 -81.8962 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: High Point, North Carolina 35.9910 -79.9937 matched with DB +City: High Point, state: North Carolina, Lat: 35.991, Lng: -79.9937, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuscaloosa, Alabama 33.2348 -87.5268 matched with DB +City: Tuscaloosa, state: Alabama, Lat: 33.2348, Lng: -87.5268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Visalia, California 36.3276 -119.3269 matched with DB +City: Visalia, state: California, Lat: 36.3276, Lng: -119.3269, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Washington 48.0809 -122.1561 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Washington 48.0809 -122.1561 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Washington 48.0809 -122.1561 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Washington 48.0809 -122.1561 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merced, California 37.3057 -120.4779 matched with DB +City: Merced, state: California, Lat: 37.3057, Lng: -120.4779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayward, California 37.6328 -122.0766 matched with DB +City: Hayward, state: California, Lat: 37.6328, Lng: -122.0766, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Indiana 40.3991 -86.8593 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Indiana 40.3991 -86.8593 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Indiana 40.3991 -86.8593 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Indiana 40.3991 -86.8593 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Illinois 39.7709 -89.6540 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corona, California 33.8616 -117.5649 matched with DB +City: Corona, state: California, Lat: 33.8616, Lng: -117.5649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paterson, New Jersey 40.9147 -74.1624 matched with DB +City: Paterson, state: New Jersey, Lat: 40.9147, Lng: -74.1624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Virginia 38.8185 -77.0861 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Virginia 38.8185 -77.0861 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Virginia 38.8185 -77.0861 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Virginia 38.8185 -77.0861 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macon, Georgia 32.8065 -83.6974 matched with DB +City: Macon, state: Georgia, Lat: 32.8065, Lng: -83.6974, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Binghamton, New York 42.1014 -75.9093 matched with DB +City: Binghamton, state: New York, Lat: 42.1014, Lng: -75.9093, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Colorado 39.6977 -105.1172 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Colorado 39.6977 -105.1172 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Colorado 39.6977 -105.1172 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Colorado 39.6977 -105.1172 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Colorado 39.6977 -105.1172 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kansas City, Kansas 39.1235 -94.7443 matched with DB +City: Kansas City, state: Kansas, Lat: 39.1235, Lng: -94.7443, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kansas City, Kansas 39.1235 -94.7443 matched with DB +City: Kansas City, state: Missouri, Lat: 39.1238, Lng: -94.5541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Texas 31.8801 -102.3448 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunnyvale, California 37.3836 -122.0255 matched with DB +City: Sunnyvale, state: California, Lat: 37.3836, Lng: -122.0255, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Bedford, Massachusetts 41.6697 -70.9428 matched with DB +City: New Bedford, state: Massachusetts, Lat: 41.6697, Lng: -70.9428, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollywood, Florida 26.0293 -80.1679 matched with DB +City: Hollywood, state: Florida, Lat: 26.0293, Lng: -80.1679, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Lyon, Michigan 42.4614 -83.6526 matched with DB +City: South Lyon, state: Michigan, Lat: 42.4614, Lng: -83.6526, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Escondido, California 33.1348 -117.0723 matched with DB +City: Escondido, state: California, Lat: 33.1348, Lng: -117.0723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Charles, Louisiana 30.2010 -93.2111 matched with DB +City: Lake Charles, state: Louisiana, Lat: 30.201, Lng: -93.2111, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pasadena, Texas 29.6575 -95.1498 matched with DB +City: Pasadena, state: Maryland, Lat: 39.1552, Lng: -76.5537, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pasadena, Texas 29.6575 -95.1498 matched with DB +City: Pasadena, state: California, Lat: 34.1597, Lng: -118.139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pasadena, Texas 29.6575 -95.1498 matched with DB +City: Pasadena, state: Texas, Lat: 29.6575, Lng: -95.1498, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Washington 47.5951 -122.1535 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Washington 47.5951 -122.1535 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Washington 47.5951 -122.1535 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Joliet, Illinois 41.5188 -88.1499 matched with DB +City: Joliet, state: Illinois, Lat: 41.5188, Lng: -88.1499, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Champaign, Illinois 40.1142 -88.2737 matched with DB +City: Champaign, state: Illinois, Lat: 40.1142, Lng: -88.2737, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pomona, California 34.0585 -117.7626 matched with DB +City: Pomona, state: New Jersey, Lat: 39.4688, Lng: -74.5502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pomona, California 34.0585 -117.7626 matched with DB +City: Pomona, state: California, Lat: 34.0585, Lng: -117.7626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, California 38.2583 -122.0335 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, California 38.2583 -122.0335 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, California 38.2583 -122.0335 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, California 38.2583 -122.0335 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mesquite, Texas 32.7602 -96.5865 matched with DB +City: Mesquite, state: Nevada, Lat: 36.8032, Lng: -114.133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mesquite, Texas 32.7602 -96.5865 matched with DB +City: Mesquite, state: Texas, Lat: 32.7602, Lng: -96.5865, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhart, Indiana 41.6916 -85.9627 matched with DB +City: Elkhart, state: Indiana, Lat: 41.6916, Lng: -85.9627, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naperville, Illinois 41.7480 -88.1659 matched with DB +City: Naperville, state: Illinois, Lat: 41.748, Lng: -88.1659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. George, Utah 37.0758 -113.5752 matched with DB +City: St. George, state: Utah, Lat: 37.0758, Lng: -113.5752, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, California 38.7703 -121.3196 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, California 38.7703 -121.3196 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, California 38.7703 -121.3196 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Topeka, Kansas 39.0346 -95.6955 matched with DB +City: Topeka, state: Kansas, Lat: 39.0346, Lng: -95.6955, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Carolina 36.0760 -79.4685 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warner Robins, Georgia 32.5961 -83.6527 matched with DB +City: Warner Robins, state: Georgia, Lat: 32.5961, Lng: -83.6527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Surprise, Arizona 33.6815 -112.4515 matched with DB +City: Surprise, state: Arizona, Lat: 33.6815, Lng: -112.4515, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Torrance, California 33.8346 -118.3416 matched with DB +City: Torrance, state: California, Lat: 33.8346, Lng: -118.3416, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Maria, California 34.9333 -120.4431 matched with DB +City: Santa Maria, state: California, Lat: 34.9333, Lng: -120.4431, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Georgia 33.9508 -83.3689 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Georgia 33.9508 -83.3689 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Georgia 33.9508 -83.3689 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Georgia 33.9508 -83.3689 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Georgia 33.9508 -83.3689 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houma, Louisiana 29.5800 -90.7059 matched with DB +City: Houma, state: Louisiana, Lat: 29.58, Lng: -90.7059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Missouri 38.9472 -92.3268 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Missouri 38.9472 -92.3268 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Missouri 38.9472 -92.3268 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Missouri 38.9472 -92.3268 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Missouri 38.9472 -92.3268 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Missouri 38.9472 -92.3268 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fullerton, California 33.8841 -117.9279 matched with DB +City: Fullerton, state: California, Lat: 33.8841, Lng: -117.9279, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fullerton, California 33.8841 -117.9279 matched with DB +City: Fullerton, state: Pennsylvania, Lat: 40.6309, Lng: -75.4834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olathe, Kansas 38.8833 -94.8200 matched with DB +City: Olathe, state: Kansas, Lat: 38.8833, Lng: -94.82, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, Colorado 39.9197 -104.9438 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greeley, Colorado 40.4152 -104.7706 matched with DB +City: Greeley, state: Colorado, Lat: 40.4152, Lng: -104.7706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaumont, Texas 30.0849 -94.1451 matched with DB +City: Beaumont, state: California, Lat: 33.9076, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beaumont, Texas 30.0849 -94.1451 matched with DB +City: Beaumont, state: Texas, Lat: 30.0849, Lng: -94.1451, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Las Cruces, New Mexico 32.3265 -106.7893 matched with DB +City: Las Cruces, state: New Mexico, Lat: 32.3265, Lng: -106.7893, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Texas 32.0243 -102.1147 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Texas 32.0243 -102.1147 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Texas 32.0243 -102.1147 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Metairie, Louisiana 29.9977 -90.1780 matched with DB +City: Metairie, state: Louisiana, Lat: 29.9977, Lng: -90.178, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Valley City, Utah 40.6886 -112.0123 matched with DB +City: West Valley City, state: Utah, Lat: 40.6886, Lng: -112.0123, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange, California 33.8038 -117.8218 matched with DB +City: Orange, state: California, Lat: 33.8038, Lng: -117.8218, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Orange, California 33.8038 -117.8218 matched with DB +City: Orange, state: Texas, Lat: 30.1226, Lng: -93.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Michigan 42.4934 -83.0270 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Michigan 42.4934 -83.0270 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Michigan 42.4934 -83.0270 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Michigan 42.4934 -83.0270 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Michigan 42.4934 -83.0270 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Junction, Colorado 39.0877 -108.5673 matched with DB +City: Grand Junction, state: Colorado, Lat: 39.0877, Lng: -108.5673, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tyler, Texas 32.3184 -95.3062 matched with DB +City: Tyler, state: Texas, Lat: 32.3184, Lng: -95.3062, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pasadena, California 34.1597 -118.1390 matched with DB +City: Pasadena, state: Maryland, Lat: 39.1552, Lng: -76.5537, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pasadena, California 34.1597 -118.1390 matched with DB +City: Pasadena, state: California, Lat: 34.1597, Lng: -118.139, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pasadena, California 34.1597 -118.1390 matched with DB +City: Pasadena, state: Texas, Lat: 29.6575, Lng: -95.1498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Virginia 37.0551 -76.3630 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Virginia 37.0551 -76.3630 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Virginia 37.0551 -76.3630 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Illinois 40.4757 -88.9703 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Illinois 40.4757 -88.9703 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Illinois 40.4757 -88.9703 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Illinois 40.4757 -88.9703 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, New Jersey 40.6658 -74.1913 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stamford, Connecticut 41.1039 -73.5585 matched with DB +City: Stamford, state: Connecticut, Lat: 41.1039, Lng: -73.5585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yuma, Arizona 32.5995 -114.5491 matched with DB +City: Yuma, state: Arizona, Lat: 32.5995, Lng: -114.5491, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kent, Washington 47.3887 -122.2128 matched with DB +City: Kent, state: Ohio, Lat: 41.149, Lng: -81.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Washington 47.3887 -122.2128 matched with DB +City: Kent, state: Washington, Lat: 47.3887, Lng: -122.2128, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Washington 47.3887 -122.2128 matched with DB +City: Kent, state: New York, Lat: 41.4735, Lng: -73.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miramar, Florida 25.9773 -80.3351 matched with DB +City: Miramar, state: Florida, Lat: 25.9773, Lng: -80.3351, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coeur d'Alene, Idaho 47.7040 -116.7936 matched with DB +City: Coeur d'Alene, state: Idaho, Lat: 47.704, Lng: -116.7936, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coral Springs, Florida 26.2702 -80.2591 matched with DB +City: Coral Springs, state: Florida, Lat: 26.2702, Lng: -80.2591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling Heights, Michigan 42.5809 -83.0305 matched with DB +City: Sterling Heights, state: Michigan, Lat: 42.5809, Lng: -83.0305, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yuba City, California 39.1357 -121.6383 matched with DB +City: Yuba City, state: California, Lat: 39.1357, Lng: -121.6383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yakima, Washington 46.5923 -120.5496 matched with DB +City: Yakima, state: Washington, Lat: 46.5923, Lng: -120.5496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Texas 32.9890 -96.8999 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Texas 32.9890 -96.8999 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Racine, Wisconsin 42.7274 -87.8135 matched with DB +City: Racine, state: Wisconsin, Lat: 42.7274, Lng: -87.8135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnson City, Tennessee 36.3406 -82.3806 matched with DB +City: Johnson City, state: New York, Lat: 42.123, Lng: -75.9624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnson City, Tennessee 36.3406 -82.3806 matched with DB +City: Johnson City, state: Tennessee, Lat: 36.3406, Lng: -82.3806, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Billings, Montana 45.7891 -108.5526 matched with DB +City: Billings, state: Montana, Lat: 45.7891, Lng: -108.5526, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iowa City, Iowa 41.6559 -91.5303 matched with DB +City: Iowa City, state: Iowa, Lat: 41.6559, Lng: -91.5303, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Delaware 39.1610 -75.5202 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Delaware 39.1610 -75.5202 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Delaware 39.1610 -75.5202 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Delaware 39.1610 -75.5202 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Delaware 39.1610 -75.5202 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellingham, Washington 48.7548 -122.4690 matched with DB +City: Bellingham, state: Washington, Lat: 48.7548, Lng: -122.469, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellingham, Washington 48.7548 -122.4690 matched with DB +City: Bellingham, state: Massachusetts, Lat: 42.0777, Lng: -71.4741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, West Virginia 38.3484 -81.6322 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, West Virginia 38.3484 -81.6322 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, West Virginia 38.3484 -81.6322 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynchburg, Virginia 37.4003 -79.1909 matched with DB +City: Lynchburg, state: Virginia, Lat: 37.4003, Lng: -79.1909, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clara, California 37.3646 -121.9680 matched with DB +City: Santa Clara, state: California, Lat: 37.3646, Lng: -121.968, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Clara, California 37.3646 -121.9680 matched with DB +City: Santa Clara, state: Oregon, Lat: 44.1154, Lng: -123.1344, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norman, Oklahoma 35.2335 -97.3471 matched with DB +City: Norman, state: Oklahoma, Lat: 35.2335, Lng: -97.3471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, North Carolina 35.5943 -77.3760 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Simi Valley, California 34.2663 -118.7490 matched with DB +City: Simi Valley, state: California, Lat: 34.2663, Lng: -118.749, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Smith, Arkansas 35.3495 -94.3695 matched with DB +City: Fort Smith, state: Arkansas, Lat: 35.3495, Lng: -94.3695, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abilene, Texas 32.4543 -99.7384 matched with DB +City: Abilene, state: Texas, Lat: 32.4543, Lng: -99.7384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Texas 33.0454 -96.9815 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Texas 33.0454 -96.9815 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearland, Texas 29.5581 -95.3218 matched with DB +City: Pearland, state: Texas, Lat: 29.5581, Lng: -95.3218, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lehigh Acres, Florida 26.6120 -81.6388 matched with DB +City: Lehigh Acres, state: Florida, Lat: 26.612, Lng: -81.6388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kenosha, Wisconsin 42.5865 -87.8773 matched with DB +City: Kenosha, state: Wisconsin, Lat: 42.5865, Lng: -87.8773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seaside, California 36.6224 -121.8199 matched with DB +City: Seaside, state: California, Lat: 36.6224, Lng: -121.8199, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Vermont 44.4876 -73.2316 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arvada, Colorado 39.8320 -105.1510 matched with DB +City: Arvada, state: Colorado, Lat: 39.832, Lng: -105.151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waldorf, Maryland 38.6085 -76.9194 matched with DB +City: Waldorf, state: Maryland, Lat: 38.6085, Lng: -76.9194, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Missouri 39.0871 -94.3501 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Missouri 39.0871 -94.3501 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Missouri 39.0871 -94.3501 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Missouri 39.0871 -94.3501 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Minnesota 44.0154 -92.4780 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Minnesota 44.0154 -92.4780 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Minnesota 44.0154 -92.4780 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Minnesota 44.0154 -92.4780 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, Utah 41.7399 -111.8422 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, Utah 41.7399 -111.8422 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harlingen, Texas 26.1916 -97.6977 matched with DB +City: Harlingen, state: Texas, Lat: 26.1916, Lng: -97.6977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berkeley, California 37.8722 -122.2760 matched with DB +City: Berkeley, state: California, Lat: 37.8722, Lng: -122.276, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berkeley, California 37.8722 -122.2760 matched with DB +City: Berkeley, state: New Jersey, Lat: 39.9156, Lng: -74.1923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clovis, California 36.8278 -119.6830 matched with DB +City: Clovis, state: California, Lat: 36.8278, Lng: -119.683, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clovis, California 36.8278 -119.6830 matched with DB +City: Clovis, state: New Mexico, Lat: 34.4376, Lng: -103.1923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Round Rock, Texas 30.5270 -97.6642 matched with DB +City: Round Rock, state: Texas, Lat: 30.527, Lng: -97.6642, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pueblo, Colorado 38.2701 -104.6114 matched with DB +City: Pueblo, state: Colorado, Lat: 38.2701, Lng: -104.6114, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temple, Texas 31.1068 -97.3891 matched with DB +City: Temple, state: Texas, Lat: 31.1068, Lng: -97.3891, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, Idaho 43.6116 -116.3977 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, Idaho 43.6116 -116.3977 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duluth, Minnesota 46.7756 -92.1393 matched with DB +City: Duluth, state: Minnesota, Lat: 46.7756, Lng: -92.1393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Duluth, Minnesota 46.7756 -92.1393 matched with DB +City: Duluth, state: Georgia, Lat: 34.0053, Lng: -84.1492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Woodlands, Texas 30.1738 -95.5134 matched with DB +City: The Woodlands, state: Texas, Lat: 30.1738, Lng: -95.5134, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boulder, Colorado 40.0248 -105.2524 matched with DB +City: Boulder, state: Colorado, Lat: 40.0248, Lng: -105.2524, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richardson, Texas 32.9716 -96.7093 matched with DB +City: Richardson, state: Texas, Lat: 32.9716, Lng: -96.7093, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Massachusetts 42.3759 -71.1185 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Massachusetts 42.3759 -71.1185 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Massachusetts 42.3759 -71.1185 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Massachusetts 42.3759 -71.1185 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Palm Beach, Florida 26.7469 -80.1320 matched with DB +City: West Palm Beach, state: Florida, Lat: 26.7469, Lng: -80.132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Arthur, Texas 29.8554 -93.9264 matched with DB +City: Port Arthur, state: Texas, Lat: 29.8554, Lng: -93.9264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Los Angeles, California 34.0326 -118.1691 matched with DB +City: East Los Angeles, state: California, Lat: 34.0326, Lng: -118.1691, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redding, California 40.5698 -122.3650 matched with DB +City: Redding, state: California, Lat: 40.5698, Lng: -122.365, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearwater, Florida 27.9790 -82.7623 matched with DB +City: Clearwater, state: Florida, Lat: 27.979, Lng: -82.7623, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Louisiana 32.5185 -92.0774 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, New York 43.0962 -75.2261 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Cloud, Minnesota 45.5340 -94.1718 matched with DB +City: St. Cloud, state: Minnesota, Lat: 45.534, Lng: -94.1718, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Cloud, Minnesota 45.5340 -94.1718 matched with DB +City: St. Cloud, state: Florida, Lat: 28.2363, Lng: -81.2779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mandeville, Louisiana 30.3751 -90.0904 matched with DB +City: Mandeville, state: Louisiana, Lat: 30.3751, Lng: -90.0904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Jordan, Utah 40.6024 -112.0008 matched with DB +City: West Jordan, state: Utah, Lat: 40.6024, Lng: -112.0008, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Charleston, South Carolina 32.9067 -80.0722 matched with DB +City: North Charleston, state: South Carolina, Lat: 32.9067, Lng: -80.0722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, California 37.9477 -122.3389 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, California 37.9477 -122.3389 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, California 37.9477 -122.3389 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, California 37.9477 -122.3389 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, California 37.9477 -122.3389 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, Colorado 39.8837 -105.0624 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Colorado 39.8837 -105.0624 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Colorado 39.8837 -105.0624 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saginaw, Michigan 43.4199 -83.9501 matched with DB +City: Saginaw, state: Michigan, Lat: 43.4199, Lng: -83.9501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Saginaw, Michigan 43.4199 -83.9501 matched with DB +City: Saginaw, state: Texas, Lat: 32.8657, Lng: -97.3654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kailua, Hawaii 21.3920 -157.7396 matched with DB +City: Kailua, state: Hawaii, Lat: 21.392, Lng: -157.7396, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Florida 27.9367 -82.3000 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Florida 27.9367 -82.3000 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Florida 27.9367 -82.3000 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlsbad, California 33.1246 -117.2834 matched with DB +City: Carlsbad, state: California, Lat: 33.1246, Lng: -117.2834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carlsbad, California 33.1246 -117.2834 matched with DB +City: Carlsbad, state: New Mexico, Lat: 32.401, Lng: -104.2388, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Massachusetts 42.6389 -71.3217 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Massachusetts 42.6389 -71.3217 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Massachusetts 42.6389 -71.3217 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broken Arrow, Oklahoma 36.0380 -95.7806 matched with DB +City: Broken Arrow, state: Oklahoma, Lat: 36.038, Lng: -95.7806, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Illinois 42.0383 -88.3240 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Illinois 42.0383 -88.3240 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gresham, Oregon 45.5021 -122.4413 matched with DB +City: Gresham, state: Oregon, Lat: 45.5021, Lng: -122.4413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: League City, Texas 29.4874 -95.1087 matched with DB +City: League City, state: Texas, Lat: 29.4874, Lng: -95.1087, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Downey, California 33.9379 -118.1311 matched with DB +City: Downey, state: California, Lat: 33.9379, Lng: -118.1311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Iowa 42.4918 -92.3522 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Iowa 42.4918 -92.3522 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murrieta, California 33.5719 -117.1909 matched with DB +City: Murrieta, state: California, Lat: 33.5719, Lng: -117.1909, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leominster, Massachusetts 42.5209 -71.7717 matched with DB +City: Leominster, state: Massachusetts, Lat: 42.5209, Lng: -71.7717, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longview, Texas 32.5193 -94.7622 matched with DB +City: Longview, state: Washington, Lat: 46.1461, Lng: -122.963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Longview, Texas 32.5193 -94.7622 matched with DB +City: Longview, state: Texas, Lat: 32.5193, Lng: -94.7622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, North Carolina 34.7289 -77.3941 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, North Carolina 34.7289 -77.3941 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, North Carolina 34.7289 -77.3941 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, North Carolina 34.7289 -77.3941 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, North Carolina 34.7289 -77.3941 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, North Carolina 34.7289 -77.3941 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pompano Beach, Florida 26.2428 -80.1312 matched with DB +City: Pompano Beach, state: Florida, Lat: 26.2428, Lng: -80.1312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bend, Oregon 44.0563 -121.3095 matched with DB +City: Bend, state: Oregon, Lat: 44.0563, Lng: -121.3095, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami Gardens, Florida 25.9433 -80.2426 matched with DB +City: Miami Gardens, state: Florida, Lat: 25.9433, Lng: -80.2426, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Costa Mesa, California 33.6667 -117.9135 matched with DB +City: Costa Mesa, state: California, Lat: 33.6667, Lng: -117.9135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sioux City, Iowa 42.4959 -96.3901 matched with DB +City: Sioux City, state: Iowa, Lat: 42.4959, Lng: -96.3901, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Everett, Washington 47.9525 -122.1669 matched with DB +City: Everett, state: Massachusetts, Lat: 42.4064, Lng: -71.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Everett, Washington 47.9525 -122.1669 matched with DB +City: Everett, state: Washington, Lat: 47.9525, Lng: -122.1669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilroy, California 37.0046 -121.5854 matched with DB +City: Gilroy, state: California, Lat: 37.0046, Lng: -121.5854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Buenaventura, California 34.2741 -119.2314 matched with DB +City: San Buenaventura, state: California, Lat: 34.2741, Lng: -119.2314, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temecula, California 33.4928 -117.1315 matched with DB +City: Temecula, state: California, Lat: 33.4928, Lng: -117.1315, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugar Land, Texas 29.5935 -95.6358 matched with DB +City: Sugar Land, state: Texas, Lat: 29.5935, Lng: -95.6358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chico, California 39.7578 -121.8161 matched with DB +City: Chico, state: California, Lat: 39.7578, Lng: -121.8161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eau Claire, Wisconsin 44.8197 -91.4948 matched with DB +City: Eau Claire, state: Wisconsin, Lat: 44.8197, Lng: -91.4948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Monte, California 34.0739 -118.0291 matched with DB +City: El Monte, state: California, Lat: 34.0739, Lng: -118.0291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Idaho Falls, Idaho 43.4871 -112.0362 matched with DB +City: Idaho Falls, state: Idaho, Lat: 43.4871, Lng: -112.0362, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dearborn, Michigan 42.3127 -83.2130 matched with DB +City: Dearborn, state: Michigan, Lat: 42.3127, Lng: -83.213, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Indiana 39.1637 -86.5257 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Indiana 39.1637 -86.5257 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Indiana 39.1637 -86.5257 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Indiana 39.1637 -86.5257 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Covina, California 34.0555 -117.9113 matched with DB +City: West Covina, state: California, Lat: 34.0555, Lng: -117.9113, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparks, Nevada 39.5736 -119.7161 matched with DB +City: Sparks, state: Nevada, Lat: 39.5736, Lng: -119.7161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Fulton, Georgia 33.6273 -84.5800 matched with DB +City: South Fulton, state: Georgia, Lat: 33.6273, Lng: -84.58, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centennial, Colorado 39.5926 -104.8673 matched with DB +City: Centennial, state: Colorado, Lat: 39.5926, Lng: -104.8673, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy Springs, Georgia 33.9366 -84.3703 matched with DB +City: Sandy Springs, state: Georgia, Lat: 33.9366, Lng: -84.3703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inglewood, California 33.9566 -118.3444 matched with DB +City: Inglewood, state: California, Lat: 33.9566, Lng: -118.3444, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Oregon 45.5273 -122.9360 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Maryland 39.2004 -76.8590 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Maryland 39.2004 -76.8590 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Maryland 39.2004 -76.8590 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Maryland 39.2004 -76.8590 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Maryland 39.2004 -76.8590 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Maryland 39.2004 -76.8590 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burbank, California 34.1879 -118.3235 matched with DB +City: Burbank, state: Illinois, Lat: 41.7444, Lng: -87.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burbank, California 34.1879 -118.3235 matched with DB +City: Burbank, state: California, Lat: 34.1879, Lng: -118.3235, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davie, Florida 26.0789 -80.2870 matched with DB +City: Davie, state: Florida, Lat: 26.0789, Lng: -80.287, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Cajon, California 32.8017 -116.9604 matched with DB +City: El Cajon, state: California, Lat: 32.8017, Lng: -116.9604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jurupa Valley, California 34.0010 -117.4706 matched with DB +City: Jurupa Valley, state: California, Lat: 34.001, Lng: -117.4706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Texas 33.1088 -96.6735 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Alabama 32.6087 -85.4903 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Renton, Washington 47.4784 -122.1918 matched with DB +City: Renton, state: Washington, Lat: 47.4784, Lng: -122.1918, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Michigan 42.7677 -86.0984 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brockton, Massachusetts 42.0821 -71.0242 matched with DB +City: Brockton, state: Massachusetts, Lat: 42.0821, Lng: -71.0242, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio Rancho, New Mexico 35.2873 -106.6982 matched with DB +City: Rio Rancho, state: New Mexico, Lat: 35.2873, Lng: -106.6982, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Mateo, California 37.5522 -122.3121 matched with DB +City: San Mateo, state: California, Lat: 37.5522, Lng: -122.3121, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rialto, California 34.1175 -117.3892 matched with DB +City: Rialto, state: California, Lat: 34.1175, Lng: -117.3892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spokane Valley, Washington 47.6626 -117.2346 matched with DB +City: Spokane Valley, state: Washington, Lat: 47.6626, Lng: -117.2346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlottesville, Virginia 38.0375 -78.4855 matched with DB +City: Charlottesville, state: Virginia, Lat: 38.0375, Lng: -78.4855, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Menifee, California 33.6909 -117.1849 matched with DB +City: Menifee, state: California, Lat: 33.6909, Lng: -117.1849, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Daly City, California 37.6862 -122.4685 matched with DB +City: Daly City, state: California, Lat: 37.6862, Lng: -122.4685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wichita Falls, Texas 33.9072 -98.5291 matched with DB +City: Wichita Falls, state: Texas, Lat: 33.9072, Lng: -98.5291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, Florida 27.8227 -82.3023 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, Florida 27.8227 -82.3023 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwalk, California 33.9069 -118.0829 matched with DB +City: Norwalk, state: Ohio, Lat: 41.2443, Lng: -82.6088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, California 33.9069 -118.0829 matched with DB +City: Norwalk, state: Connecticut, Lat: 41.1144, Lng: -73.4215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, California 33.9069 -118.0829 matched with DB +City: Norwalk, state: Iowa, Lat: 41.4895, Lng: -93.6913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, California 33.9069 -118.0829 matched with DB +City: Norwalk, state: California, Lat: 33.9069, Lng: -118.0829, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lee's Summit, Missouri 38.9171 -94.3816 matched with DB +City: Lee's Summit, state: Missouri, Lat: 38.9171, Lng: -94.3816, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longmont, Colorado 40.1686 -105.1005 matched with DB +City: Longmont, state: Colorado, Lat: 40.1686, Lng: -105.1005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vacaville, California 38.3587 -121.9673 matched with DB +City: Vacaville, state: California, Lat: 38.3587, Lng: -121.9673, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highlands Ranch, Colorado 39.5419 -104.9708 matched with DB +City: Highlands Ranch, state: Colorado, Lat: 39.5419, Lng: -104.9708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsport, Tennessee 36.5224 -82.5454 matched with DB +City: Kingsport, state: Tennessee, Lat: 36.5224, Lng: -82.5454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Tan Valley, Arizona 33.1786 -111.5629 matched with DB +City: San Tan Valley, state: Arizona, Lat: 33.1786, Lng: -111.5629, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, Massachusetts 42.2506 -71.0187 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, Massachusetts 42.2506 -71.0187 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edinburg, Texas 26.3196 -98.1597 matched with DB +City: Edinburg, state: Texas, Lat: 26.3196, Lng: -98.1597, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynn, Massachusetts 42.4781 -70.9664 matched with DB +City: Lynn, state: Massachusetts, Lat: 42.4781, Lng: -70.9664, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Angelo, Texas 31.4424 -100.4504 matched with DB +City: San Angelo, state: Texas, Lat: 31.4424, Lng: -100.4504, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hesperia, California 34.3975 -117.3147 matched with DB +City: Hesperia, state: California, Lat: 34.3975, Lng: -117.3147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Kentucky 36.9716 -86.4378 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Kentucky 36.9716 -86.4378 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Federal Way, Washington 47.3091 -122.3358 matched with DB +City: Federal Way, state: Washington, Lat: 47.3091, Lng: -122.3358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carmel, Indiana 39.9650 -86.1460 matched with DB +City: Carmel, state: Indiana, Lat: 39.965, Lng: -86.146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carmel, Indiana 39.9650 -86.1460 matched with DB +City: Carmel, state: New York, Lat: 41.3899, Lng: -73.7239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bismarck, North Dakota 46.8143 -100.7694 matched with DB +City: Bismarck, state: North Dakota, Lat: 46.8143, Lng: -100.7694, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fishers, Indiana 39.9588 -85.9659 matched with DB +City: Fishers, state: Indiana, Lat: 39.9588, Lng: -85.9659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Colorado 39.9946 -105.0998 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Colorado 39.9946 -105.0998 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Colorado 39.9946 -105.0998 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Colorado 39.9946 -105.0998 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vista, California 33.1896 -117.2386 matched with DB +City: Vista, state: California, Lat: 33.1896, Lng: -117.2386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boca Raton, Florida 26.3752 -80.1080 matched with DB +City: Boca Raton, state: Florida, Lat: 26.3752, Lng: -80.108, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Augustine, Florida 29.8976 -81.3100 matched with DB +City: St. Augustine, state: Florida, Lat: 29.8976, Lng: -81.31, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaverton, Oregon 45.4779 -122.8168 matched with DB +City: Beaverton, state: Oregon, Lat: 45.4779, Lng: -122.8168, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goodyear, Arizona 33.2614 -112.3622 matched with DB +City: Goodyear, state: Arizona, Lat: 33.2614, Lng: -112.3622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portsmouth, Virginia 36.8468 -76.3540 matched with DB +City: Portsmouth, state: Ohio, Lat: 38.7538, Lng: -82.9445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Virginia 36.8468 -76.3540 matched with DB +City: Portsmouth, state: New Hampshire, Lat: 43.058, Lng: -70.7826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Virginia 36.8468 -76.3540 matched with DB +City: Portsmouth, state: Virginia, Lat: 36.8468, Lng: -76.354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Virginia 36.8468 -76.3540 matched with DB +City: Portsmouth, state: Rhode Island, Lat: 41.5922, Lng: -71.2745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orem, Utah 40.2981 -111.6994 matched with DB +City: Orem, state: Utah, Lat: 40.2981, Lng: -111.6994, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunrise, Florida 26.1547 -80.2997 matched with DB +City: Sunrise, state: Florida, Lat: 26.1547, Lng: -80.2997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portsmouth, New Hampshire 43.0580 -70.7826 matched with DB +City: Portsmouth, state: Ohio, Lat: 38.7538, Lng: -82.9445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, New Hampshire 43.0580 -70.7826 matched with DB +City: Portsmouth, state: New Hampshire, Lat: 43.058, Lng: -70.7826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, New Hampshire 43.0580 -70.7826 matched with DB +City: Portsmouth, state: Virginia, Lat: 36.8468, Lng: -76.354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, New Hampshire 43.0580 -70.7826 matched with DB +City: Portsmouth, state: Rhode Island, Lat: 41.5922, Lng: -71.2745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arden-Arcade, California 38.6017 -121.3845 matched with DB +City: Arden-Arcade, state: California, Lat: 38.6017, Lng: -121.3845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Kansas 38.9597 -95.2642 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Kansas 38.9597 -95.2642 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Kansas 38.9597 -95.2642 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Kansas 38.9597 -95.2642 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy, Utah 40.5709 -111.8506 matched with DB +City: Sandy, state: Pennsylvania, Lat: 41.1447, Lng: -78.7295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sandy, Utah 40.5709 -111.8506 matched with DB +City: Sandy, state: Oregon, Lat: 45.3988, Lng: -122.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sandy, Utah 40.5709 -111.8506 matched with DB +City: Sandy, state: Utah, Lat: 40.5709, Lng: -111.8506, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Slidell, Louisiana 30.2887 -89.7828 matched with DB +City: Slidell, state: Louisiana, Lat: 30.2887, Lng: -89.7828, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buckeye, Arizona 33.4314 -112.6429 matched with DB +City: Buckeye, state: Arizona, Lat: 33.4314, Lng: -112.6429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livonia, Michigan 42.3972 -83.3733 matched with DB +City: Livonia, state: Michigan, Lat: 42.3972, Lng: -83.3733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Virginia 37.2693 -76.7076 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Suffolk, Virginia 36.6953 -76.6398 matched with DB +City: Suffolk, state: Virginia, Lat: 36.6953, Lng: -76.6398, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Compton, California 33.8930 -118.2274 matched with DB +City: Compton, state: California, Lat: 33.893, Lng: -118.2274, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Crosse, Wisconsin 43.8241 -91.2268 matched with DB +City: La Crosse, state: Wisconsin, Lat: 43.8241, Lng: -91.2268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edmond, Oklahoma 35.6689 -97.4160 matched with DB +City: Edmond, state: Oklahoma, Lat: 35.6689, Lng: -97.416, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carson, California 33.8374 -118.2559 matched with DB +City: Carson, state: California, Lat: 33.8374, Lng: -118.2559, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Marcos, California 33.1350 -117.1743 matched with DB +City: San Marcos, state: California, Lat: 33.135, Lng: -117.1743, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: San Marcos, California 33.1350 -117.1743 matched with DB +City: San Marcos, state: Texas, Lat: 29.8734, Lng: -97.9356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tracy, California 37.7269 -121.4523 matched with DB +City: Tracy, state: California, Lat: 37.7269, Lng: -121.4523, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott Valley, Arizona 34.5980 -112.3185 matched with DB +City: Prescott Valley, state: Arizona, Lat: 34.598, Lng: -112.3185, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Ohio 39.5033 -84.3659 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fall River, Massachusetts 41.7136 -71.1015 matched with DB +City: Fall River, state: Massachusetts, Lat: 41.7136, Lng: -71.1015, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Fe, New Mexico 35.6619 -105.9819 matched with DB +City: Santa Fe, state: New Mexico, Lat: 35.6619, Lng: -105.9819, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Fe, New Mexico 35.6619 -105.9819 matched with DB +City: Santa Fe, state: Texas, Lat: 29.3889, Lng: -95.1003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plantation, Florida 26.1259 -80.2617 matched with DB +City: Plantation, state: Florida, Lat: 26.1259, Lng: -80.2617, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Braunfels, Texas 29.6994 -98.1148 matched with DB +City: New Braunfels, state: Texas, Lat: 29.6994, Lng: -98.1148, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roswell, Georgia 34.0391 -84.3513 matched with DB +City: Roswell, state: Georgia, Lat: 34.0391, Lng: -84.3513, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roswell, Georgia 34.0391 -84.3513 matched with DB +City: Roswell, state: New Mexico, Lat: 33.373, Lng: -104.5294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conroe, Texas 30.3238 -95.4824 matched with DB +City: Conroe, state: Texas, Lat: 30.3238, Lng: -95.4824, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Gate, California 33.9447 -118.1926 matched with DB +City: South Gate, state: California, Lat: 33.9447, Lng: -118.1926, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Monica, California 34.0235 -118.4810 matched with DB +City: Santa Monica, state: California, Lat: 34.0235, Lng: -118.481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkland, Washington 47.6970 -122.2057 matched with DB +City: Kirkland, state: Washington, Lat: 47.697, Lng: -122.2057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kirkland, Washington 47.6970 -122.2057 matched with DB +City: Kirkland, state: New York, Lat: 43.0368, Lng: -75.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hoover, Alabama 33.3763 -86.8068 matched with DB +City: Hoover, state: Alabama, Lat: 33.3763, Lng: -86.8068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: O'Fallon, Missouri 38.7850 -90.7175 matched with DB +City: O'Fallon, state: Missouri, Lat: 38.785, Lng: -90.7175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: O'Fallon, Missouri 38.7850 -90.7175 matched with DB +City: O'Fallon, state: Illinois, Lat: 38.5974, Lng: -89.9148, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alafaya, Florida 28.5280 -81.1868 matched with DB +City: Alafaya, state: Florida, Lat: 28.528, Lng: -81.1868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Coast, Florida 29.5389 -81.2457 matched with DB +City: Palm Coast, state: Florida, Lat: 29.5389, Lng: -81.2457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwalk, Connecticut 41.1144 -73.4215 matched with DB +City: Norwalk, state: Ohio, Lat: 41.2443, Lng: -82.6088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Connecticut 41.1144 -73.4215 matched with DB +City: Norwalk, state: Connecticut, Lat: 41.1144, Lng: -73.4215, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Connecticut 41.1144 -73.4215 matched with DB +City: Norwalk, state: Iowa, Lat: 41.4895, Lng: -93.6913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Connecticut 41.1144 -73.4215 matched with DB +City: Norwalk, state: California, Lat: 33.9069, Lng: -118.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawton, Oklahoma 34.6175 -98.4202 matched with DB +City: Lawton, state: Oklahoma, Lat: 34.6175, Lng: -98.4202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chino, California 33.9836 -117.6654 matched with DB +City: Chino, state: California, Lat: 33.9836, Lng: -117.6654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, South Carolina 32.8537 -79.8203 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, South Carolina 32.8537 -79.8203 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, South Carolina 32.8537 -79.8203 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, South Carolina 32.8537 -79.8203 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, South Carolina 32.8537 -79.8203 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, South Carolina 32.8537 -79.8203 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manteca, California 37.7927 -121.2264 matched with DB +City: Manteca, state: California, Lat: 37.7927, Lng: -121.2264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, California 33.7523 -117.9938 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, California 33.7523 -117.9938 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, California 33.7523 -117.9938 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, South Carolina 34.1780 -79.7898 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Carolina 34.1780 -79.7898 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Carolina 34.1780 -79.7898 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Carolina 34.1780 -79.7898 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Carolina 34.1780 -79.7898 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Carolina 34.1780 -79.7898 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Joplin, Missouri 37.0757 -94.5018 matched with DB +City: Joplin, state: Missouri, Lat: 37.0757, Lng: -94.5018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Germantown, Maryland 39.1755 -77.2643 matched with DB +City: Germantown, state: Wisconsin, Lat: 43.2343, Lng: -88.1217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Maryland 39.1755 -77.2643 matched with DB +City: Germantown, state: Maryland, Lat: 39.1755, Lng: -77.2643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Maryland 39.1755 -77.2643 matched with DB +City: Germantown, state: Tennessee, Lat: 35.0829, Lng: -89.7824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Leandro, California 37.7074 -122.1599 matched with DB +City: San Leandro, state: California, Lat: 37.7074, Lng: -122.1599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Town 'n' Country, Florida 28.0106 -82.5763 matched with DB +City: Town 'n' Country, state: Florida, Lat: 28.0106, Lng: -82.5763, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, New Jersey 40.8630 -74.1575 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, New Jersey 40.8630 -74.1575 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waukegan, Illinois 42.3698 -87.8716 matched with DB +City: Waukegan, state: Illinois, Lat: 42.3698, Lng: -87.8716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Minnesota 44.8306 -93.3151 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Minnesota 44.8306 -93.3151 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Minnesota 44.8306 -93.3151 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Minnesota 44.8306 -93.3151 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avondale, Arizona 33.3873 -112.3235 matched with DB +City: Avondale, state: Arizona, Lat: 33.3873, Lng: -112.3235, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atascocita, Texas 29.9777 -95.1953 matched with DB +City: Atascocita, state: Texas, Lat: 29.9777, Lng: -95.1953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Missoula, Montana 46.8751 -114.0214 matched with DB +City: Missoula, state: Montana, Lat: 46.8751, Lng: -114.0214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Myers, Florida 26.6194 -81.8302 matched with DB +City: Fort Myers, state: Florida, Lat: 26.6194, Lng: -81.8302, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Massachusetts 42.3316 -71.2085 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Massachusetts 42.3316 -71.2085 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Massachusetts 42.3316 -71.2085 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Massachusetts 42.3316 -71.2085 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Massachusetts 42.7002 -71.1626 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Massachusetts 42.7002 -71.1626 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Massachusetts 42.7002 -71.1626 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Massachusetts 42.7002 -71.1626 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muncie, Indiana 40.1989 -85.3950 matched with DB +City: Muncie, state: Indiana, Lat: 40.1989, Lng: -85.395, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rapid City, South Dakota 44.0716 -103.2204 matched with DB +City: Rapid City, state: South Dakota, Lat: 44.0716, Lng: -103.2204, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Michigan 42.5817 -83.1457 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Michigan 42.5817 -83.1457 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Michigan 42.5817 -83.1457 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Michigan 42.5817 -83.1457 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Michigan 42.5817 -83.1457 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Michigan 42.5817 -83.1457 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livermore, California 37.6868 -121.7607 matched with DB +City: Livermore, state: California, Lat: 37.6868, Lng: -121.7607, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Citrus Heights, California 38.6948 -121.2880 matched with DB +City: Citrus Heights, state: California, Lat: 38.6948, Lng: -121.288, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawthorne, California 33.9147 -118.3476 matched with DB +City: Hawthorne, state: New Jersey, Lat: 40.9579, Lng: -74.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hawthorne, California 33.9147 -118.3476 matched with DB +City: Hawthorne, state: California, Lat: 33.9147, Lng: -118.3476, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Virginia 39.1735 -78.1746 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Virginia 39.1735 -78.1746 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Virginia 39.1735 -78.1746 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Virginia 39.1735 -78.1746 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Virginia 39.1735 -78.1746 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Arkansas 36.1901 -94.1574 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Arkansas 36.1901 -94.1574 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Arkansas 36.1901 -94.1574 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whittier, California 33.9678 -118.0188 matched with DB +City: Whittier, state: California, Lat: 33.9678, Lng: -118.0188, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield Beach, Florida 26.3050 -80.1277 matched with DB +City: Deerfield Beach, state: Florida, Lat: 26.305, Lng: -80.1277, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Illinois 39.8557 -88.9342 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Illinois 39.8557 -88.9342 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Illinois 39.8557 -88.9342 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Illinois 39.8557 -88.9342 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Ramon, California 37.7624 -121.9365 matched with DB +City: San Ramon, state: California, Lat: 37.7624, Lng: -121.9365, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vineland, New Jersey 39.4653 -74.9981 matched with DB +City: Vineland, state: New Jersey, Lat: 39.4653, Lng: -74.9981, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission, Texas 26.2039 -98.3256 matched with DB +City: Mission, state: Kansas, Lat: 39.027, Lng: -94.6568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mission, Texas 26.2039 -98.3256 matched with DB +City: Mission, state: Texas, Lat: 26.2039, Lng: -98.3256, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Washington 47.3039 -122.2108 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Forest, California 33.6605 -117.6714 matched with DB +City: Lake Forest, state: Illinois, Lat: 42.238, Lng: -87.8596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lake Forest, California 33.6605 -117.6714 matched with DB +City: Lake Forest, state: California, Lat: 33.6605, Lng: -117.6714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport Beach, California 33.6151 -117.8668 matched with DB +City: Newport Beach, state: California, Lat: 33.6151, Lng: -117.8668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melbourne, Florida 28.1086 -80.6627 matched with DB +City: Melbourne, state: Florida, Lat: 28.1086, Lng: -80.6627, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn Park, Minnesota 45.1112 -93.3505 matched with DB +City: Brooklyn Park, state: Minnesota, Lat: 45.1112, Lng: -93.3505, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn Park, Minnesota 45.1112 -93.3505 matched with DB +City: Brooklyn Park, state: Maryland, Lat: 39.217, Lng: -76.6174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryan, Texas 30.6650 -96.3807 matched with DB +City: Bryan, state: Ohio, Lat: 41.4706, Lng: -84.5483, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bryan, Texas 30.6650 -96.3807 matched with DB +City: Bryan, state: Texas, Lat: 30.665, Lng: -96.3807, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westland, Michigan 42.3192 -83.3805 matched with DB +City: Westland, state: Michigan, Lat: 42.3192, Lng: -83.3805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Napa, California 38.2975 -122.3010 matched with DB +City: Napa, state: California, Lat: 38.2975, Lng: -122.301, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baytown, Texas 29.7587 -94.9671 matched with DB +City: Baytown, state: Texas, Lat: 29.7587, Lng: -94.9671, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cicero, Illinois 41.8445 -87.7593 matched with DB +City: Cicero, state: Illinois, Lat: 41.8445, Lng: -87.7593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cicero, Illinois 41.8445 -87.7593 matched with DB +City: Cicero, state: New York, Lat: 43.1662, Lng: -76.0662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, Indiana 40.0891 -85.6892 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Indiana 40.0891 -85.6892 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Indiana 40.0891 -85.6892 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Tennessee 35.9200 -86.8516 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington Hills, Michigan 42.4860 -83.3771 matched with DB +City: Farmington Hills, state: Michigan, Lat: 42.486, Lng: -83.3771, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buena Park, California 33.8572 -118.0046 matched with DB +City: Buena Park, state: California, Lat: 33.8572, Lng: -118.0046, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Georgia 31.5776 -84.1762 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Georgia 31.5776 -84.1762 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Georgia 31.5776 -84.1762 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Georgia 31.5776 -84.1762 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Hills, Florida 28.5818 -81.4692 matched with DB +City: Pine Hills, state: Florida, Lat: 28.5818, Lng: -81.4692, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: State College, Pennsylvania 40.7909 -77.8567 matched with DB +City: State College, state: Pennsylvania, Lat: 40.7909, Lng: -77.8567, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redwood City, California 37.5025 -122.2253 matched with DB +City: Redwood City, state: California, Lat: 37.5025, Lng: -122.2253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warwick, Rhode Island 41.7062 -71.4334 matched with DB +City: Warwick, state: Rhode Island, Lat: 41.7062, Lng: -71.4334, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Rhode Island 41.7062 -71.4334 matched with DB +City: Warwick, state: New York, Lat: 41.2597, Lng: -74.3614, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Rhode Island 41.7062 -71.4334 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.1558, Lng: -76.2799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Rhode Island 41.7062 -71.4334 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.2503, Lng: -75.0818, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Michigan 42.2431 -84.4038 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cranston, Rhode Island 41.7658 -71.4858 matched with DB +City: Cranston, state: Rhode Island, Lat: 41.7658, Lng: -71.4858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Largo, Florida 27.9088 -82.7712 matched with DB +City: Largo, state: Maryland, Lat: 38.88, Lng: -76.8289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Largo, Florida 27.9088 -82.7712 matched with DB +City: Largo, state: Florida, Lat: 27.9088, Lng: -82.7712, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami Beach, Florida 25.8171 -80.1396 matched with DB +City: Miami Beach, state: Florida, Lat: 25.8171, Lng: -80.1396, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alhambra, California 34.0840 -118.1355 matched with DB +City: Alhambra, state: California, Lat: 34.084, Lng: -118.1355, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johns Creek, Georgia 34.0333 -84.2027 matched with DB +City: Johns Creek, state: Georgia, Lat: 34.0333, Lng: -84.2027, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, California 37.4001 -122.0796 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salisbury, Maryland 38.3756 -75.5865 matched with DB +City: Salisbury, state: New York, Lat: 40.7454, Lng: -73.5604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Maryland 38.3756 -75.5865 matched with DB +City: Salisbury, state: Maryland, Lat: 38.3756, Lng: -75.5865, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Maryland 38.3756 -75.5865 matched with DB +City: Salisbury, state: North Carolina, Lat: 35.6658, Lng: -80.4905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Maryland 38.3756 -75.5865 matched with DB +City: Salisbury, state: Massachusetts, Lat: 42.8465, Lng: -70.8616, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Maryland 38.3756 -75.5865 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.038, Lng: -75.9961, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Maryland 38.3756 -75.5865 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.5768, Lng: -75.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgantown, West Virginia 39.6383 -79.9464 matched with DB +City: Morgantown, state: West Virginia, Lat: 39.6383, Lng: -79.9464, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver Spring, Maryland 39.0028 -77.0207 matched with DB +City: Silver Spring, state: Maryland, Lat: 39.0028, Lng: -77.0207, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Silver Spring, Maryland 39.0028 -77.0207 matched with DB +City: Silver Spring, state: Pennsylvania, Lat: 40.2503, Lng: -77.0567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Layton, Utah 41.0770 -111.9620 matched with DB +City: Layton, state: Utah, Lat: 41.077, Lng: -111.962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Ohio 39.9300 -83.7959 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, California 33.8471 -118.1222 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, California 33.8471 -118.1222 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, California 33.8471 -118.1222 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, California 33.8471 -118.1222 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, California 33.8471 -118.1222 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Alabama 34.8303 -87.6655 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Alabama 34.8303 -87.6655 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Alabama 34.8303 -87.6655 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Alabama 34.8303 -87.6655 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Alabama 34.8303 -87.6655 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Alabama 34.8303 -87.6655 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Folsom, California 38.6668 -121.1422 matched with DB +City: Folsom, state: California, Lat: 38.6668, Lng: -121.1422, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Folsom, California 38.6668 -121.1422 matched with DB +City: Folsom, state: Pennsylvania, Lat: 39.8924, Lng: -75.3287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madera, California 36.9630 -120.0778 matched with DB +City: Madera, state: California, Lat: 36.963, Lng: -120.0778, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Rochelle, New York 40.9304 -73.7836 matched with DB +City: New Rochelle, state: New York, Lat: 40.9304, Lng: -73.7836, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parma, Ohio 41.3843 -81.7286 matched with DB +City: Parma, state: Ohio, Lat: 41.3843, Lng: -81.7286, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parma, Ohio 41.3843 -81.7286 matched with DB +City: Parma, state: New York, Lat: 43.2651, Lng: -77.7968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terre Haute, Indiana 39.4660 -87.3751 matched with DB +City: Terre Haute, state: Indiana, Lat: 39.466, Lng: -87.3751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, Massachusetts 42.3908 -71.1014 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, Massachusetts 42.3908 -71.1014 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flagstaff, Arizona 35.1872 -111.6194 matched with DB +City: Flagstaff, state: Arizona, Lat: 35.1872, Lng: -111.6194, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boynton Beach, Florida 26.5281 -80.0811 matched with DB +City: Boynton Beach, state: Florida, Lat: 26.5281, Lng: -80.0811, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, Florida 25.4665 -80.4472 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Ohio 40.0706 -82.4250 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Ohio 40.0706 -82.4250 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Ohio 40.0706 -82.4250 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Ohio 40.0706 -82.4250 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Ohio 40.0706 -82.4250 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Minnesota 45.0225 -93.4617 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Minnesota 45.0225 -93.4617 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Minnesota 45.0225 -93.4617 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Minnesota 45.0225 -93.4617 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Minnesota 45.0225 -93.4617 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Minnesota 45.0225 -93.4617 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anniston, Alabama 33.6712 -85.8135 matched with DB +City: Anniston, state: Alabama, Lat: 33.6712, Lng: -85.8135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Texarkana, Texas 33.4500 -94.0847 matched with DB +City: Texarkana, state: Arkansas, Lat: 33.436, Lng: -93.9959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Texarkana, Texas 33.4500 -94.0847 matched with DB +City: Texarkana, state: Texas, Lat: 33.45, Lng: -94.0847, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tustin, California 33.7311 -117.8107 matched with DB +City: Tustin, state: California, Lat: 33.7311, Lng: -117.8107, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pharr, Texas 26.1685 -98.1904 matched with DB +City: Pharr, state: Texas, Lat: 26.1685, Lng: -98.1904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Huron, Michigan 42.9821 -82.4388 matched with DB +City: Port Huron, state: Michigan, Lat: 42.9821, Lng: -82.4388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Turlock, California 37.5053 -120.8588 matched with DB +City: Turlock, state: California, Lat: 37.5053, Lng: -120.8588, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho Cordova, California 38.5737 -121.2527 matched with DB +City: Rancho Cordova, state: California, Lat: 38.5737, Lng: -121.2527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Villages, Florida 28.9034 -81.9887 matched with DB +City: The Villages, state: Florida, Lat: 28.9034, Lng: -81.9887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milpitas, California 37.4336 -121.8921 matched with DB +City: Milpitas, state: California, Lat: 37.4336, Lng: -121.8921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perris, California 33.7898 -117.2233 matched with DB +City: Perris, state: California, Lat: 33.7898, Lng: -117.2233, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upland, California 34.1178 -117.6604 matched with DB +City: Upland, state: California, Lat: 34.1178, Lng: -117.6604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Illinois 38.9037 -90.1520 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Illinois 38.9037 -90.1520 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasanton, California 37.6663 -121.8805 matched with DB +City: Pleasanton, state: California, Lat: 37.6663, Lng: -121.8805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasanton, California 37.6663 -121.8805 matched with DB +City: Pleasanton, state: Texas, Lat: 28.9642, Lng: -98.4957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendall, Florida 25.6697 -80.3556 matched with DB +City: Kendall, state: Florida, Lat: 25.6697, Lng: -80.3556, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jonesboro, Arkansas 35.8212 -90.6791 matched with DB +City: Jonesboro, state: Arkansas, Lat: 35.8212, Lng: -90.6791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellflower, California 33.8880 -118.1271 matched with DB +City: Bellflower, state: California, Lat: 33.888, Lng: -118.1271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Battle Creek, Michigan 42.2985 -85.2296 matched with DB +City: Battle Creek, state: Michigan, Lat: 42.2985, Lng: -85.2296, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chino Hills, California 33.9508 -117.7254 matched with DB +City: Chino Hills, state: California, Lat: 33.9508, Lng: -117.7254, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheyenne, Wyoming 41.1350 -104.7902 matched with DB +City: Cheyenne, state: Wyoming, Lat: 41.135, Lng: -104.7902, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Pennsylvania 40.3412 -76.4228 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carmichael, California 38.6318 -121.3263 matched with DB +City: Carmichael, state: California, Lat: 38.6318, Lng: -121.3263, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Jordan, Utah 40.5570 -111.9784 matched with DB +City: South Jordan, state: Utah, Lat: 40.557, Lng: -111.9784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davis, California 38.5553 -121.7370 matched with DB +City: Davis, state: California, Lat: 38.5553, Lng: -121.737, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown, Kentucky 37.7031 -85.8773 matched with DB +City: Elizabethtown, state: Pennsylvania, Lat: 40.1533, Lng: -76.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elizabethtown, Kentucky 37.7031 -85.8773 matched with DB +City: Elizabethtown, state: Kentucky, Lat: 37.7031, Lng: -85.8773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Schaumburg, Illinois 42.0308 -88.0838 matched with DB +City: Schaumburg, state: Illinois, Lat: 42.0308, Lng: -88.0838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alameda, California 37.7668 -122.2670 matched with DB +City: Alameda, state: California, Lat: 37.7668, Lng: -122.267, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hammond, Indiana 41.6168 -87.4909 matched with DB +City: Hammond, state: Indiana, Lat: 41.6168, Lng: -87.4909, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hammond, Indiana 41.6168 -87.4909 matched with DB +City: Hammond, state: Louisiana, Lat: 30.5061, Lng: -90.4563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pasco, Washington 46.2506 -119.1305 matched with DB +City: Pasco, state: Washington, Lat: 46.2506, Lng: -119.1305, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evanston, Illinois 42.0464 -87.6943 matched with DB +City: Evanston, state: Illinois, Lat: 42.0464, Lng: -87.6943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evanston, Illinois 42.0464 -87.6943 matched with DB +City: Evanston, state: Wyoming, Lat: 41.2602, Lng: -110.9646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lehi, Utah 40.4136 -111.8725 matched with DB +City: Lehi, state: Utah, Lat: 40.4136, Lng: -111.8725, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Louisiana 31.2923 -92.4702 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Louisiana 31.2923 -92.4702 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Louisiana 31.2923 -92.4702 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Louisiana 31.2923 -92.4702 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Port, Florida 27.0576 -82.1977 matched with DB +City: North Port, state: Florida, Lat: 27.0576, Lng: -82.1977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington Heights, Illinois 42.0955 -87.9826 matched with DB +City: Arlington Heights, state: Illinois, Lat: 42.0955, Lng: -87.9826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camarillo, California 34.2230 -119.0321 matched with DB +City: Camarillo, state: California, Lat: 34.223, Lng: -119.0321, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Michigan 42.8908 -85.7066 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Michigan 42.8908 -85.7066 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flower Mound, Texas 33.0343 -97.1146 matched with DB +City: Flower Mound, state: Texas, Lat: 33.0343, Lng: -97.1146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethlehem, Pennsylvania 40.6266 -75.3679 matched with DB +City: Bethlehem, state: Pennsylvania, Lat: 40.6266, Lng: -75.3679, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethlehem, Pennsylvania 40.6266 -75.3679 matched with DB +City: Bethlehem, state: New York, Lat: 42.5856, Lng: -73.8219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hattiesburg, Mississippi 31.3074 -89.3170 matched with DB +City: Hattiesburg, state: Mississippi, Lat: 31.3074, Lng: -89.317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loveland, Colorado 40.4166 -105.0623 matched with DB +City: Loveland, state: Ohio, Lat: 39.2677, Lng: -84.2733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Loveland, Colorado 40.4166 -105.0623 matched with DB +City: Loveland, state: Colorado, Lat: 40.4166, Lng: -105.0623, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburg, California 38.0182 -121.8965 matched with DB +City: Pittsburg, state: Kansas, Lat: 37.4129, Lng: -94.6985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pittsburg, California 38.0182 -121.8965 matched with DB +City: Pittsburg, state: California, Lat: 38.0182, Lng: -121.8965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Park, Texas 30.5105 -97.8197 matched with DB +City: Cedar Park, state: Texas, Lat: 30.5105, Lng: -97.8197, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wenatchee, Washington 47.4360 -120.3295 matched with DB +City: Wenatchee, state: Washington, Lat: 47.436, Lng: -120.3295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southfield, Michigan 42.4765 -83.2605 matched with DB +City: Southfield, state: Michigan, Lat: 42.4765, Lng: -83.2605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester Hills, Michigan 42.6645 -83.1563 matched with DB +City: Rochester Hills, state: Michigan, Lat: 42.6645, Lng: -83.1563, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hammond, Louisiana 30.5061 -90.4563 matched with DB +City: Hammond, state: Indiana, Lat: 41.6168, Lng: -87.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hammond, Louisiana 30.5061 -90.4563 matched with DB +City: Hammond, state: Louisiana, Lat: 30.5061, Lng: -90.4563, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valdosta, Georgia 30.8502 -83.2788 matched with DB +City: Valdosta, state: Georgia, Lat: 30.8502, Lng: -83.2788, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Owensboro, Kentucky 37.7575 -87.1172 matched with DB +City: Owensboro, state: Kentucky, Lat: 37.7575, Lng: -87.1172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apple Valley, California 34.5352 -117.2109 matched with DB +City: Apple Valley, state: Minnesota, Lat: 44.7457, Lng: -93.2004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Apple Valley, California 34.5352 -117.2109 matched with DB +City: Apple Valley, state: California, Lat: 34.5352, Lng: -117.2109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, Minnesota 44.9057 -92.9230 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Minnesota 44.9057 -92.9230 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Minnesota 44.9057 -92.9230 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Minnesota 44.9057 -92.9230 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pawtucket, Rhode Island 41.8744 -71.3743 matched with DB +City: Pawtucket, state: Rhode Island, Lat: 41.8744, Lng: -71.3743, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Missouri 39.7598 -94.8210 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Doral, Florida 25.8152 -80.3565 matched with DB +City: Doral, state: Florida, Lat: 25.8152, Lng: -80.3565, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, New Hampshire 43.1887 -70.8845 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Hampshire 43.1887 -70.8845 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Hampshire 43.1887 -70.8845 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Hampshire 43.1887 -70.8845 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Hampshire 43.1887 -70.8845 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Missouri City, Texas 29.5630 -95.5365 matched with DB +City: Missouri City, state: Texas, Lat: 29.563, Lng: -95.5365, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga Springs, New York 43.0674 -73.7775 matched with DB +City: Saratoga Springs, state: New York, Lat: 43.0674, Lng: -73.7775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Saratoga Springs, New York 43.0674 -73.7775 matched with DB +City: Saratoga Springs, state: Utah, Lat: 40.345, Lng: -111.9154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pocatello, Idaho 42.8724 -112.4647 matched with DB +City: Pocatello, state: Idaho, Lat: 42.8724, Lng: -112.4647, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oshkosh, Wisconsin 44.0227 -88.5619 matched with DB +City: Oshkosh, state: Wisconsin, Lat: 44.0227, Lng: -88.5619, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Britain, Connecticut 41.6759 -72.7862 matched with DB +City: New Britain, state: Pennsylvania, Lat: 40.3084, Lng: -75.207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Britain, Connecticut 41.6759 -72.7862 matched with DB +City: New Britain, state: Connecticut, Lat: 41.6759, Lng: -72.7862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Castle Rock, Colorado 39.3763 -104.8535 matched with DB +City: Castle Rock, state: Colorado, Lat: 39.3763, Lng: -104.8535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lauderhill, Florida 26.1605 -80.2241 matched with DB +City: Lauderhill, state: Florida, Lat: 26.1605, Lng: -80.2241, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broomfield, Colorado 39.9542 -105.0526 matched with DB +City: Broomfield, state: Colorado, Lat: 39.9542, Lng: -105.0526, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dale City, Virginia 38.6473 -77.3459 matched with DB +City: Dale City, state: Virginia, Lat: 38.6473, Lng: -77.3459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolingbrook, Illinois 41.6901 -88.1021 matched with DB +City: Bolingbrook, state: Illinois, Lat: 41.6901, Lng: -88.1021, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redmond, Washington 47.6763 -122.1169 matched with DB +City: Redmond, state: Washington, Lat: 47.6763, Lng: -122.1169, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Redmond, Washington 47.6763 -122.1169 matched with DB +City: Redmond, state: Oregon, Lat: 44.2612, Lng: -121.181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Texas 32.5690 -97.1213 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Texas 32.5690 -97.1213 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Texas 32.5690 -97.1213 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Texas 32.5690 -97.1213 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ellicott City, Maryland 39.2774 -76.8345 matched with DB +City: Ellicott City, state: Maryland, Lat: 39.2774, Lng: -76.8345, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheboygan, Wisconsin 43.7403 -87.7316 matched with DB +City: Sheboygan, state: Wisconsin, Lat: 43.7403, Lng: -87.7316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Ohio 40.7656 -82.5275 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Ohio 40.7656 -82.5275 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Ohio 40.7656 -82.5275 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Ohio 40.7656 -82.5275 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glens Falls, New York 43.3109 -73.6458 matched with DB +City: Glens Falls, state: New York, Lat: 43.3109, Lng: -73.6458, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Daytona Beach, Florida 29.1995 -81.0982 matched with DB +City: Daytona Beach, state: Florida, Lat: 29.1995, Lng: -81.0982, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lodi, California 38.1218 -121.2932 matched with DB +City: Lodi, state: New Jersey, Lat: 40.8784, Lng: -74.0814, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lodi, California 38.1218 -121.2932 matched with DB +City: Lodi, state: California, Lat: 38.1218, Lng: -121.2932, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redlands, California 34.0512 -117.1712 matched with DB +City: Redlands, state: Colorado, Lat: 39.0886, Lng: -108.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Redlands, California 34.0512 -117.1712 matched with DB +City: Redlands, state: California, Lat: 34.0512, Lng: -117.1712, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisonburg, Virginia 38.4362 -78.8735 matched with DB +City: Harrisonburg, state: Virginia, Lat: 38.4362, Lng: -78.8735, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dothan, Alabama 31.2336 -85.4070 matched with DB +City: Dothan, state: Alabama, Lat: 31.2336, Lng: -85.407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Tennessee 35.1817 -84.8707 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Tennessee 35.1817 -84.8707 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Tennessee 35.1817 -84.8707 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Tennessee 35.6538 -88.8354 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, New York 40.9136 -73.8291 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, New York 40.9136 -73.8291 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, New York 40.9136 -73.8291 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, New York 40.9136 -73.8291 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, New York 40.9136 -73.8291 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centreville, Virginia 38.8390 -77.4389 matched with DB +City: Centreville, state: Virginia, Lat: 38.839, Lng: -77.4389, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Pennsylvania 40.5082 -78.4007 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Pennsylvania 40.5082 -78.4007 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Pennsylvania 40.5082 -78.4007 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Framingham, Massachusetts 42.3085 -71.4368 matched with DB +City: Framingham, state: Massachusetts, Lat: 42.3085, Lng: -71.4368, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, New Jersey 39.9361 -75.1073 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, New Jersey 39.9361 -75.1073 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Texas 30.6660 -97.6966 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Texas 30.6660 -97.6966 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Texas 30.6660 -97.6966 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin Park, California 34.0829 -117.9722 matched with DB +City: Baldwin Park, state: California, Lat: 34.0829, Lng: -117.9722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocklin, California 38.8075 -121.2489 matched with DB +City: Rocklin, state: California, Lat: 38.8075, Lng: -121.2489, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Porterville, California 36.0643 -119.0338 matched with DB +City: Porterville, state: California, Lat: 36.0643, Lng: -119.0338, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tamarac, Florida 26.2056 -80.2539 matched with DB +City: Tamarac, state: Florida, Lat: 26.2056, Lng: -80.2539, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Burnie, Maryland 39.1560 -76.6071 matched with DB +City: Glen Burnie, state: Maryland, Lat: 39.156, Lng: -76.6071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blacksburg, Virginia 37.2300 -80.4279 matched with DB +City: Blacksburg, state: Virginia, Lat: 37.23, Lng: -80.4279, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wausau, Wisconsin 44.9620 -89.6459 matched with DB +City: Wausau, state: Wisconsin, Lat: 44.962, Lng: -89.6459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumter, South Carolina 33.9392 -80.3930 matched with DB +City: Sumter, state: South Carolina, Lat: 33.9392, Lng: -80.393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Janesville, Wisconsin 42.6854 -89.0135 matched with DB +City: Janesville, state: Wisconsin, Lat: 42.6854, Lng: -89.0135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brunswick, Georgia 31.1449 -81.4746 matched with DB +City: Brunswick, state: Ohio, Lat: 41.2465, Lng: -81.8198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Georgia 31.1449 -81.4746 matched with DB +City: Brunswick, state: Georgia, Lat: 31.1449, Lng: -81.4746, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Georgia 31.1449 -81.4746 matched with DB +City: Brunswick, state: Maine, Lat: 43.9007, Lng: -69.9761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Georgia 31.1449 -81.4746 matched with DB +City: Brunswick, state: New York, Lat: 42.7558, Lng: -73.5903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, California 37.7161 -121.8963 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, California 37.7161 -121.8963 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, California 37.7161 -121.8963 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmington, Delaware 39.7415 -75.5416 matched with DB +City: Wilmington, state: Delaware, Lat: 39.7415, Lng: -75.5416, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Delaware 39.7415 -75.5416 matched with DB +City: Wilmington, state: Ohio, Lat: 39.4362, Lng: -83.8141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Delaware 39.7415 -75.5416 matched with DB +City: Wilmington, state: North Carolina, Lat: 34.2099, Lng: -77.8866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Delaware 39.7415 -75.5416 matched with DB +City: Wilmington, state: Massachusetts, Lat: 42.5609, Lng: -71.1654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waukesha, Wisconsin 43.0087 -88.2464 matched with DB +City: Waukesha, state: Wisconsin, Lat: 43.0087, Lng: -88.2464, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairbanks, Alaska 64.8353 -147.6533 matched with DB +City: Fairbanks, state: Alaska, Lat: 64.8353, Lng: -147.6533, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeville, Minnesota 44.6774 -93.2520 matched with DB +City: Lakeville, state: Minnesota, Lat: 44.6774, Lng: -93.252, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeville, Minnesota 44.6774 -93.2520 matched with DB +City: Lakeville, state: Massachusetts, Lat: 41.831, Lng: -70.9594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Missouri 38.7954 -90.5157 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Missouri 38.7954 -90.5157 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redondo Beach, California 33.8577 -118.3765 matched with DB +City: Redondo Beach, state: California, Lat: 33.8577, Lng: -118.3765, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Tennessee 35.7437 -86.9116 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Tennessee 35.7437 -86.9116 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayonne, New Jersey 40.6668 -74.1158 matched with DB +City: Bayonne, state: New Jersey, Lat: 40.6668, Lng: -74.1158, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Forks, North Dakota 47.9214 -97.0884 matched with DB +City: Grand Forks, state: North Dakota, Lat: 47.9214, Lng: -97.0884, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Noblesville, Indiana 40.0355 -86.0042 matched with DB +City: Noblesville, state: Indiana, Lat: 40.0355, Lng: -86.0042, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Paso de Robles, California 35.6394 -120.6560 matched with DB +City: El Paso de Robles, state: California, Lat: 35.6394, Lng: -120.656, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Richland Hills, Texas 32.8604 -97.2180 matched with DB +City: North Richland Hills, state: Texas, Lat: 32.8604, Lng: -97.218, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maple Grove, Minnesota 45.1089 -93.4626 matched with DB +City: Maple Grove, state: Minnesota, Lat: 45.1089, Lng: -93.4626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Passaic, New Jersey 40.8574 -74.1282 matched with DB +City: Passaic, state: New Jersey, Lat: 40.8574, Lng: -74.1282, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blaine, Minnesota 45.1696 -93.2077 matched with DB +City: Blaine, state: Minnesota, Lat: 45.1696, Lng: -93.2077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Elsinore, California 33.6847 -117.3344 matched with DB +City: Lake Elsinore, state: California, Lat: 33.6847, Lng: -117.3344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rogers, Arkansas 36.3170 -94.1531 matched with DB +City: Rogers, state: Minnesota, Lat: 45.1865, Lng: -93.5783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rogers, Arkansas 36.3170 -94.1531 matched with DB +City: Rogers, state: Arkansas, Lat: 36.317, Lng: -94.1531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Casas Adobes, Arizona 32.3423 -111.0113 matched with DB +City: Casas Adobes, state: Arizona, Lat: 32.3423, Lng: -111.0113, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherman, Texas 33.6273 -96.6221 matched with DB +City: Sherman, state: Texas, Lat: 33.6273, Lng: -96.6221, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut Creek, California 37.9024 -122.0399 matched with DB +City: Walnut Creek, state: California, Lat: 37.9024, Lng: -122.0399, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Arkansas 35.0753 -92.4692 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Arkansas 35.0753 -92.4692 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Arkansas 35.0753 -92.4692 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Arkansas 35.0753 -92.4692 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastvale, California 33.9617 -117.5803 matched with DB +City: Eastvale, state: California, Lat: 33.9617, Lng: -117.5803, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, California 37.6032 -122.0181 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, California 37.6032 -122.0181 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, California 37.6032 -122.0181 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, California 37.6032 -122.0181 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Michigan City, Indiana 41.7092 -86.8690 matched with DB +City: Michigan City, state: Indiana, Lat: 41.7092, Lng: -86.869, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poinciana, Florida 28.1217 -81.4821 matched with DB +City: Poinciana, state: Florida, Lat: 28.1217, Lng: -81.4821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tulare, California 36.1995 -119.3400 matched with DB +City: Tulare, state: California, Lat: 36.1995, Lng: -119.34, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gary, Indiana 41.5905 -87.3473 matched with DB +City: Gary, state: Indiana, Lat: 41.5905, Lng: -87.3473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gaithersburg, Maryland 39.1346 -77.2131 matched with DB +City: Gaithersburg, state: Maryland, Lat: 39.1346, Lng: -77.2131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Orange, New Jersey 40.7651 -74.2117 matched with DB +City: East Orange, state: New Jersey, Lat: 40.7651, Lng: -74.2117, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wesley Chapel, Florida 28.2106 -82.3238 matched with DB +City: Wesley Chapel, state: Florida, Lat: 28.2106, Lng: -82.3238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wesley Chapel, Florida 28.2106 -82.3238 matched with DB +City: Wesley Chapel, state: North Carolina, Lat: 34.9985, Lng: -80.6903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Des Moines, Iowa 41.5521 -93.7806 matched with DB +City: West Des Moines, state: Iowa, Lat: 41.5521, Lng: -93.7806, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Georgia 34.7690 -84.9720 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dubuque, Iowa 42.5002 -90.7070 matched with DB +City: Dubuque, state: Iowa, Lat: 42.5002, Lng: -90.707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Schenectady, New York 42.8025 -73.9275 matched with DB +City: Schenectady, state: New York, Lat: 42.8025, Lng: -73.9275, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ankeny, Iowa 41.7288 -93.6031 matched with DB +City: Ankeny, state: Iowa, Lat: 41.7288, Lng: -93.6031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maricopa, Arizona 33.0408 -112.0011 matched with DB +City: Maricopa, state: Arizona, Lat: 33.0408, Lng: -112.0011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagan, Minnesota 44.8170 -93.1638 matched with DB +City: Eagan, state: Minnesota, Lat: 44.817, Lng: -93.1638, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanford, California 36.3274 -119.6549 matched with DB +City: Hanford, state: California, Lat: 36.3274, Lng: -119.6549, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Tennessee 36.5572 -82.2154 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Tennessee 36.5572 -82.2154 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Tennessee 36.5572 -82.2154 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Tennessee 36.5572 -82.2154 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Tennessee 36.5572 -82.2154 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorba Linda, California 33.8890 -117.7714 matched with DB +City: Yorba Linda, state: California, Lat: 33.889, Lng: -117.7714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Florida 26.1006 -80.4054 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Florida 26.1006 -80.4054 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Florida 26.1006 -80.4054 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watsonville, California 36.9206 -121.7708 matched with DB +City: Watsonville, state: California, Lat: 36.9206, Lng: -121.7708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palo Alto, California 37.3905 -122.1468 matched with DB +City: Palo Alto, state: California, Lat: 37.3905, Lng: -122.1468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Hill, Washington 47.1198 -122.2853 matched with DB +City: South Hill, state: Washington, Lat: 47.1198, Lng: -122.2853, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shawnee, Kansas 39.0158 -94.8076 matched with DB +City: Shawnee, state: Kansas, Lat: 39.0158, Lng: -94.8076, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shawnee, Kansas 39.0158 -94.8076 matched with DB +City: Shawnee, state: Oklahoma, Lat: 35.3531, Lng: -96.9647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Marcos, Texas 29.8734 -97.9356 matched with DB +City: San Marcos, state: California, Lat: 33.135, Lng: -117.1743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: San Marcos, Texas 29.8734 -97.9356 matched with DB +City: San Marcos, state: Texas, Lat: 29.8734, Lng: -97.9356, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Falls, Montana 47.5022 -111.2996 matched with DB +City: Great Falls, state: Virginia, Lat: 39.011, Lng: -77.3013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Great Falls, Montana 47.5022 -111.2996 matched with DB +City: Great Falls, state: Montana, Lat: 47.5022, Lng: -111.2996, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haverhill, Massachusetts 42.7838 -71.0871 matched with DB +City: Haverhill, state: Massachusetts, Lat: 42.7838, Lng: -71.0871, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, New Jersey 40.7675 -74.0323 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, New Jersey 40.7675 -74.0323 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, New Jersey 40.7675 -74.0323 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, New Jersey 40.7675 -74.0323 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palatine, Illinois 42.1180 -88.0430 matched with DB +City: Palatine, state: Illinois, Lat: 42.118, Lng: -88.043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longview, Washington 46.1461 -122.9630 matched with DB +City: Longview, state: Washington, Lat: 46.1461, Lng: -122.963, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Longview, Washington 46.1461 -122.9630 matched with DB +City: Longview, state: Texas, Lat: 32.5193, Lng: -94.7622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corvallis, Oregon 44.5698 -123.2779 matched with DB +City: Corvallis, state: Oregon, Lat: 44.5698, Lng: -123.2779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Maryland 39.0834 -77.1553 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Skokie, Illinois 42.0360 -87.7400 matched with DB +City: Skokie, state: Illinois, Lat: 42.036, Lng: -87.74, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Washington 48.4203 -122.3115 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Washington 48.4203 -122.3115 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Washington 48.4203 -122.3115 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Washington 48.4203 -122.3115 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Washington 48.4203 -122.3115 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Casper, Wyoming 42.8420 -106.3208 matched with DB +City: Casper, state: Wyoming, Lat: 42.842, Lng: -106.3208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ames, Iowa 42.0256 -93.6217 matched with DB +City: Ames, state: Iowa, Lat: 42.0256, Lng: -93.6217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delray Beach, Florida 26.4550 -80.0905 matched with DB +City: Delray Beach, state: Florida, Lat: 26.455, Lng: -80.0905, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sammamish, Washington 47.6017 -122.0416 matched with DB +City: Sammamish, state: Washington, Lat: 47.6017, Lng: -122.0416, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynwood, California 33.9240 -118.2016 matched with DB +City: Lynwood, state: Illinois, Lat: 41.5235, Lng: -87.551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lynwood, California 33.9240 -118.2016 matched with DB +City: Lynwood, state: California, Lat: 33.924, Lng: -118.2016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dundalk, Maryland 39.2704 -76.4942 matched with DB +City: Dundalk, state: Maryland, Lat: 39.2704, Lng: -76.4942, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethesda, Maryland 38.9866 -77.1188 matched with DB +City: Bethesda, state: Maryland, Lat: 38.9866, Lng: -77.1188, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, Tennessee 36.2043 -83.3001 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, Tennessee 36.2043 -83.3001 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kankakee, Illinois 41.1020 -87.8643 matched with DB +City: Kankakee, state: Illinois, Lat: 41.102, Lng: -87.8643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpharetta, Georgia 34.0704 -84.2738 matched with DB +City: Alpharetta, state: Georgia, Lat: 34.0704, Lng: -84.2738, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Novi, Michigan 42.4786 -83.4893 matched with DB +City: Novi, state: Michigan, Lat: 42.4786, Lng: -83.4893, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kenner, Louisiana 30.0109 -90.2549 matched with DB +City: Kenner, state: Louisiana, Lat: 30.0109, Lng: -90.2549, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay City, Michigan 43.5902 -83.8887 matched with DB +City: Bay City, state: Michigan, Lat: 43.5902, Lng: -83.8887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bay City, Michigan 43.5902 -83.8887 matched with DB +City: Bay City, state: Texas, Lat: 28.9838, Lng: -95.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Texas 28.8287 -96.9849 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Texas 28.8287 -96.9849 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South San Francisco, California 37.6538 -122.4196 matched with DB +City: South San Francisco, state: California, Lat: 37.6538, Lng: -122.4196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apex, North Carolina 35.7237 -78.8743 matched with DB +City: Apex, state: North Carolina, Lat: 35.7237, Lng: -78.8743, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkersburg, West Virginia 39.2623 -81.5420 matched with DB +City: Parkersburg, state: West Virginia, Lat: 39.2623, Lng: -81.542, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malden, Massachusetts 42.4305 -71.0576 matched with DB +City: Malden, state: Massachusetts, Lat: 42.4305, Lng: -71.0576, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Castro Valley, California 37.7088 -122.0626 matched with DB +City: Castro Valley, state: California, Lat: 37.7088, Lng: -122.0626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bozeman, Montana 45.6833 -111.0558 matched with DB +City: Bozeman, state: Montana, Lat: 45.6833, Lng: -111.0558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brentwood, New York 40.7839 -73.2522 matched with DB +City: Brentwood, state: Pennsylvania, Lat: 40.3734, Lng: -79.9757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, New York 40.7839 -73.2522 matched with DB +City: Brentwood, state: New York, Lat: 40.7839, Lng: -73.2522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, New York 40.7839 -73.2522 matched with DB +City: Brentwood, state: Tennessee, Lat: 35.9918, Lng: -86.7758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, New York 40.7839 -73.2522 matched with DB +City: Brentwood, state: California, Lat: 37.9356, Lng: -121.719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waltham, Massachusetts 42.3889 -71.2423 matched with DB +City: Waltham, state: Massachusetts, Lat: 42.3889, Lng: -71.2423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pflugerville, Texas 30.4515 -97.6018 matched with DB +City: Pflugerville, state: Texas, Lat: 30.4515, Lng: -97.6018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Little Rock, Arkansas 34.7807 -92.2371 matched with DB +City: North Little Rock, state: Arkansas, Lat: 34.7807, Lng: -92.2371, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brentwood, California 37.9356 -121.7190 matched with DB +City: Brentwood, state: Pennsylvania, Lat: 40.3734, Lng: -79.9757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, California 37.9356 -121.7190 matched with DB +City: Brentwood, state: New York, Lat: 40.7839, Lng: -73.2522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, California 37.9356 -121.7190 matched with DB +City: Brentwood, state: Tennessee, Lat: 35.9918, Lng: -86.7758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, California 37.9356 -121.7190 matched with DB +City: Brentwood, state: California, Lat: 37.9356, Lng: -121.719, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laguna Niguel, California 33.5275 -117.7050 matched with DB +City: Laguna Niguel, state: California, Lat: 33.5275, Lng: -117.705, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Clemente, California 33.4499 -117.6102 matched with DB +City: San Clemente, state: California, Lat: 33.4499, Lng: -117.6102, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burnsville, Minnesota 44.7648 -93.2793 matched with DB +City: Burnsville, state: Minnesota, Lat: 44.7648, Lng: -93.2793, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring, Texas 30.0613 -95.3830 matched with DB +City: Spring, state: Texas, Lat: 30.0613, Lng: -95.383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring, Texas 30.0613 -95.3830 matched with DB +City: Spring, state: Pennsylvania, Lat: 40.3038, Lng: -76.0262, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Charlotte, Florida 26.9918 -82.1140 matched with DB +City: Port Charlotte, state: Florida, Lat: 26.9918, Lng: -82.114, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden Prairie, Minnesota 44.8488 -93.4595 matched with DB +City: Eden Prairie, state: Minnesota, Lat: 44.8488, Lng: -93.4595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Indiana 39.6019 -86.1073 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Indiana 39.6019 -86.1073 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Indiana 39.6019 -86.1073 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Indiana 39.6019 -86.1073 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millcreek, Utah 40.6892 -111.8292 matched with DB +City: Millcreek, state: Utah, Lat: 40.6892, Lng: -111.8292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Millcreek, Utah 40.6892 -111.8292 matched with DB +City: Millcreek, state: Pennsylvania, Lat: 42.0859, Lng: -80.1194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Nebraska 41.1485 -95.9390 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Nebraska 41.1485 -95.9390 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Nebraska 41.1485 -95.9390 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coon Rapids, Minnesota 45.1755 -93.3094 matched with DB +City: Coon Rapids, state: Minnesota, Lat: 45.1755, Lng: -93.3094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rowlett, Texas 32.9155 -96.5489 matched with DB +City: Rowlett, state: Texas, Lat: 32.9155, Lng: -96.5489, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Ohio 39.3939 -84.5653 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Ohio 39.3939 -84.5653 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Ohio 39.3939 -84.5653 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Ohio 39.3939 -84.5653 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Washington 47.1628 -122.5299 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Washington 47.1628 -122.5299 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Washington 47.1628 -122.5299 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Washington 47.1628 -122.5299 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Washington 47.1628 -122.5299 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence-Graham, California 33.9682 -118.2447 matched with DB +City: Florence-Graham, state: California, Lat: 33.9682, Lng: -118.2447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commerce City, Colorado 39.8641 -104.8430 matched with DB +City: Commerce City, state: Colorado, Lat: 39.8641, Lng: -104.843, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bossier City, Louisiana 32.5224 -93.6668 matched with DB +City: Bossier City, state: Louisiana, Lat: 32.5224, Lng: -93.6668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Michigan 42.2260 -83.2688 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Michigan 42.2260 -83.2688 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Habra, California 33.9282 -117.9515 matched with DB +City: La Habra, state: California, Lat: 33.9282, Lng: -117.9515, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Orange, Florida 29.1085 -81.0137 matched with DB +City: Port Orange, state: Florida, Lat: 29.1085, Lng: -81.0137, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moore, Oklahoma 35.3293 -97.4757 matched with DB +City: Moore, state: Oklahoma, Lat: 35.3293, Lng: -97.4757, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Moore, Oklahoma 35.3293 -97.4757 matched with DB +City: Moore, state: Pennsylvania, Lat: 40.7798, Lng: -75.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Council Bluffs, Iowa 41.2369 -95.8516 matched with DB +City: Council Bluffs, state: Iowa, Lat: 41.2369, Lng: -95.8516, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leander, Texas 30.5728 -97.8618 matched with DB +City: Leander, state: Texas, Lat: 30.5728, Lng: -97.8618, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dearborn Heights, Michigan 42.3164 -83.2769 matched with DB +City: Dearborn Heights, state: Michigan, Lat: 42.3164, Lng: -83.2769, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reston, Virginia 38.9497 -77.3461 matched with DB +City: Reston, state: Virginia, Lat: 38.9497, Lng: -77.3461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montebello, California 34.0155 -118.1108 matched with DB +City: Montebello, state: California, Lat: 34.0155, Lng: -118.1108, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pontiac, Michigan 42.6493 -83.2878 matched with DB +City: Pontiac, state: Michigan, Lat: 42.6493, Lng: -83.2878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pontiac, Michigan 42.6493 -83.2878 matched with DB +City: Pontiac, state: Illinois, Lat: 40.8894, Lng: -88.6409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Encinitas, California 33.0492 -117.2610 matched with DB +City: Encinitas, state: California, Lat: 33.0492, Lng: -117.261, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Queen Creek, Arizona 33.2454 -111.6173 matched with DB +City: Queen Creek, state: Arizona, Lat: 33.2454, Lng: -111.6173, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medford, Massachusetts 42.4234 -71.1087 matched with DB +City: Medford, state: Massachusetts, Lat: 42.4234, Lng: -71.1087, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Massachusetts 42.4234 -71.1087 matched with DB +City: Medford, state: New York, Lat: 40.822, Lng: -72.9859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Massachusetts 42.4234 -71.1087 matched with DB +City: Medford, state: Oregon, Lat: 42.3372, Lng: -122.854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Massachusetts 42.4234 -71.1087 matched with DB +City: Medford, state: New Jersey, Lat: 39.8639, Lng: -74.8231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Oregon 44.0538 -122.9811 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hendersonville, Tennessee 36.3063 -86.5997 matched with DB +City: Hendersonville, state: Tennessee, Lat: 36.3063, Lng: -86.5997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hendersonville, Tennessee 36.3063 -86.5997 matched with DB +City: Hendersonville, state: North Carolina, Lat: 35.3247, Lng: -82.4575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Harbor, Florida 28.0847 -82.7481 matched with DB +City: Palm Harbor, state: Florida, Lat: 28.0847, Lng: -82.7481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pico Rivera, California 33.9901 -118.0888 matched with DB +City: Pico Rivera, state: California, Lat: 33.9901, Lng: -118.0888, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Georgia 33.9533 -84.5422 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Georgia 33.9533 -84.5422 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Florida 26.6461 -80.2699 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Florida 26.6461 -80.2699 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Florida 28.7891 -81.2757 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Florida 28.7891 -81.2757 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Florida 28.7891 -81.2757 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, California 38.6712 -121.7500 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caldwell, Idaho 43.6453 -116.6594 matched with DB +City: Caldwell, state: New Jersey, Lat: 40.8389, Lng: -74.2776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Caldwell, Idaho 43.6453 -116.6594 matched with DB +City: Caldwell, state: Idaho, Lat: 43.6453, Lng: -116.6594, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntersville, North Carolina 35.4060 -80.8716 matched with DB +City: Huntersville, state: North Carolina, Lat: 35.406, Lng: -80.8716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Connecticut 41.6812 -72.9407 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Connecticut 41.6812 -72.9407 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Connecticut 41.6812 -72.9407 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Connecticut 41.6812 -72.9407 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Connecticut 41.6812 -72.9407 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jupiter, Florida 26.9200 -80.1128 matched with DB +City: Jupiter, state: Florida, Lat: 26.92, Lng: -80.1128, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Rafael, California 37.9905 -122.5221 matched with DB +City: San Rafael, state: California, Lat: 37.9905, Lng: -122.5221, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Mesa, California 32.7703 -117.0204 matched with DB +City: La Mesa, state: California, Lat: 32.7703, Lng: -117.0204, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Washington 46.2824 -119.2939 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Washington 46.2824 -119.2939 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Washington 46.2824 -119.2939 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Washington 46.2824 -119.2939 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Revere, Massachusetts 42.4189 -71.0040 matched with DB +City: Revere, state: Massachusetts, Lat: 42.4189, Lng: -71.004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meriden, Connecticut 41.5369 -72.7946 matched with DB +City: Meriden, state: Connecticut, Lat: 41.5369, Lng: -72.7946, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey Park, California 34.0497 -118.1326 matched with DB +City: Monterey Park, state: California, Lat: 34.0497, Lng: -118.1326, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardena, California 33.8943 -118.3072 matched with DB +City: Gardena, state: California, Lat: 33.8943, Lng: -118.3072, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Euless, Texas 32.8508 -97.0800 matched with DB +City: Euless, state: Texas, Lat: 32.8508, Lng: -97.08, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Des Plaines, Illinois 42.0345 -87.9008 matched with DB +City: Des Plaines, state: Illinois, Lat: 42.0345, Lng: -87.9008, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Allis, Wisconsin 43.0068 -88.0296 matched with DB +City: West Allis, state: Wisconsin, Lat: 43.0068, Lng: -88.0296, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Miami, Florida 25.9008 -80.1686 matched with DB +City: North Miami, state: Florida, Lat: 25.9008, Lng: -80.1686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Cloud, Florida 28.2363 -81.2779 matched with DB +City: St. Cloud, state: Minnesota, Lat: 45.534, Lng: -94.1718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Cloud, Florida 28.2363 -81.2779 matched with DB +City: St. Cloud, state: Florida, Lat: 28.2363, Lng: -81.2779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Hammocks, Florida 25.6700 -80.4482 matched with DB +City: The Hammocks, state: Florida, Lat: 25.67, Lng: -80.4482, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cupertino, California 37.3168 -122.0466 matched with DB +City: Cupertino, state: California, Lat: 37.3168, Lng: -122.0466, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, Utah 40.6569 -111.9493 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petaluma, California 38.2423 -122.6266 matched with DB +City: Petaluma, state: California, Lat: 38.2423, Lng: -122.6266, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kokomo, Indiana 40.4640 -86.1277 matched with DB +City: Kokomo, state: Indiana, Lat: 40.464, Lng: -86.1277, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santee, California 32.8554 -116.9851 matched with DB +City: Santee, state: California, Lat: 32.8554, Lng: -116.9851, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stonecrest, Georgia 33.6842 -84.1372 matched with DB +City: Stonecrest, state: Georgia, Lat: 33.6842, Lng: -84.1372, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taunton, Massachusetts 41.9036 -71.0943 matched with DB +City: Taunton, state: Massachusetts, Lat: 41.9036, Lng: -71.0943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Plains, New York 41.0220 -73.7547 matched with DB +City: White Plains, state: New York, Lat: 41.022, Lng: -73.7547, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Beach Gardens, Florida 26.8466 -80.1679 matched with DB +City: Palm Beach Gardens, state: Florida, Lat: 26.8466, Lng: -80.1679, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chapel Hill, North Carolina 35.9271 -79.0391 matched with DB +City: Chapel Hill, state: North Carolina, Lat: 35.9271, Lng: -79.0391, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hoboken, New Jersey 40.7452 -74.0281 matched with DB +City: Hoboken, state: New Jersey, Lat: 40.7452, Lng: -74.0281, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Colorado 39.5084 -104.7753 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Colorado 39.5084 -104.7753 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blue Springs, Missouri 39.0124 -94.2721 matched with DB +City: Blue Springs, state: Missouri, Lat: 39.0124, Lng: -94.2721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shoreline, Washington 47.7564 -122.3426 matched with DB +City: Shoreline, state: Washington, Lat: 47.7564, Lng: -122.3426, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Clair Shores, Michigan 42.4925 -82.8961 matched with DB +City: St. Clair Shores, state: Michigan, Lat: 42.4925, Lng: -82.8961, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Horizon West, Florida 28.4417 -81.6146 matched with DB +City: Horizon West, state: Florida, Lat: 28.4417, Lng: -81.6146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Margate, Florida 26.2466 -80.2119 matched with DB +City: Margate, state: Florida, Lat: 26.2466, Lng: -80.2119, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orland Park, Illinois 41.6075 -87.8619 matched with DB +City: Orland Park, state: Illinois, Lat: 41.6075, Lng: -87.8619, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carson City, Nevada 39.1511 -119.7476 matched with DB +City: Carson City, state: Nevada, Lat: 39.1511, Lng: -119.7476, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midwest City, Oklahoma 35.4630 -97.3710 matched with DB +City: Midwest City, state: Oklahoma, Lat: 35.463, Lng: -97.371, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Royal Oak, Michigan 42.5084 -83.1539 matched with DB +City: Royal Oak, state: Michigan, Lat: 42.5084, Lng: -83.1539, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowie, Maryland 38.9549 -76.7406 matched with DB +City: Bowie, state: Maryland, Lat: 38.9549, Lng: -76.7406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kettering, Ohio 39.6956 -84.1494 matched with DB +City: Kettering, state: Ohio, Lat: 39.6956, Lng: -84.1494, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kettering, Ohio 39.6956 -84.1494 matched with DB +City: Kettering, state: Maryland, Lat: 38.8888, Lng: -76.7889, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Peters, Missouri 38.7825 -90.6061 matched with DB +City: St. Peters, state: Missouri, Lat: 38.7825, Lng: -90.6061, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Lawn, Illinois 41.7139 -87.7528 matched with DB +City: Oak Lawn, state: Illinois, Lat: 41.7139, Lng: -87.7528, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Towson, Maryland 39.3944 -76.6190 matched with DB +City: Towson, state: Maryland, Lat: 39.3944, Lng: -76.619, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coconut Creek, Florida 26.2803 -80.1842 matched with DB +City: Coconut Creek, state: Florida, Lat: 26.2803, Lng: -80.1842, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Alabama 34.5731 -86.9905 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Alabama 34.5731 -86.9905 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Alabama 34.5731 -86.9905 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Alabama 34.5731 -86.9905 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lenexa, Kansas 38.9609 -94.8018 matched with DB +City: Lenexa, state: Kansas, Lat: 38.9609, Lng: -94.8018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlett, Tennessee 35.2337 -89.8195 matched with DB +City: Bartlett, state: Illinois, Lat: 41.9804, Lng: -88.2071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bartlett, Tennessee 35.2337 -89.8195 matched with DB +City: Bartlett, state: Tennessee, Lat: 35.2337, Lng: -89.8195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Whittier, California 33.9336 -118.0312 matched with DB +City: South Whittier, state: California, Lat: 33.9336, Lng: -118.0312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Havasu City, Arizona 34.5006 -114.3113 matched with DB +City: Lake Havasu City, state: Arizona, Lat: 34.5006, Lng: -114.3113, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bel Air South, Maryland 39.5022 -76.3113 matched with DB +City: Bel Air South, state: Maryland, Lat: 39.5022, Lng: -76.3113, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountainebleau, Florida 25.7723 -80.3460 matched with DB +City: Fountainebleau, state: Florida, Lat: 25.7723, Lng: -80.346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wylie, Texas 33.0362 -96.5161 matched with DB +City: Wylie, state: Texas, Lat: 33.0362, Lng: -96.5161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Alabama 34.7114 -86.7626 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Alabama 34.7114 -86.7626 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Alabama 34.7114 -86.7626 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Alabama 34.7114 -86.7626 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Alabama 34.7114 -86.7626 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookhaven, Georgia 33.8743 -84.3314 matched with DB +City: Brookhaven, state: Mississippi, Lat: 31.5803, Lng: -90.4432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, Georgia 33.8743 -84.3314 matched with DB +City: Brookhaven, state: Georgia, Lat: 33.8743, Lng: -84.3314, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, Georgia 33.8743 -84.3314 matched with DB +City: Brookhaven, state: New York, Lat: 40.832, Lng: -72.9517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, California 34.1113 -117.1650 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, California 34.1113 -117.1650 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, California 34.1113 -117.1650 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, California 34.1113 -117.1650 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain Valley, California 33.7105 -117.9514 matched with DB +City: Fountain Valley, state: California, Lat: 33.7105, Lng: -117.9514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berwyn, Illinois 41.8433 -87.7909 matched with DB +City: Berwyn, state: Illinois, Lat: 41.8433, Lng: -87.7909, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Severn, Maryland 39.1355 -76.6956 matched with DB +City: Severn, state: Maryland, Lat: 39.1355, Lng: -76.6956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Oregon 44.6272 -123.0965 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Oregon 44.6272 -123.0965 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Oregon 44.6272 -123.0965 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Oregon 44.6272 -123.0965 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: National City, California 32.6654 -117.0983 matched with DB +City: National City, state: California, Lat: 32.6654, Lng: -117.0983, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lacey, Washington 47.0462 -122.7933 matched with DB +City: Lacey, state: Washington, Lat: 47.0462, Lng: -122.7933, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lacey, Washington 47.0462 -122.7933 matched with DB +City: Lacey, state: New Jersey, Lat: 39.8564, Lng: -74.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Prospect, Illinois 42.0641 -87.9375 matched with DB +City: Mount Prospect, state: Illinois, Lat: 42.0641, Lng: -87.9375, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, California 34.1342 -118.0373 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, California 34.1342 -118.0373 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DeSoto, Texas 32.5992 -96.8633 matched with DB +City: DeSoto, state: Texas, Lat: 32.5992, Lng: -96.8633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smyrna, Georgia 33.8633 -84.5168 matched with DB +City: Smyrna, state: Delaware, Lat: 39.2935, Lng: -75.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, Georgia 33.8633 -84.5168 matched with DB +City: Smyrna, state: Georgia, Lat: 33.8633, Lng: -84.5168, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, Georgia 33.8633 -84.5168 matched with DB +City: Smyrna, state: Tennessee, Lat: 35.9687, Lng: -86.5264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradenton, Florida 27.4901 -82.5757 matched with DB +City: Bradenton, state: Florida, Lat: 27.4901, Lng: -82.5757, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Brunswick, New Jersey 40.4870 -74.4450 matched with DB +City: New Brunswick, state: New Jersey, Lat: 40.487, Lng: -74.445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apple Valley, Minnesota 44.7457 -93.2004 matched with DB +City: Apple Valley, state: Minnesota, Lat: 44.7457, Lng: -93.2004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Apple Valley, Minnesota 44.7457 -93.2004 matched with DB +City: Apple Valley, state: California, Lat: 34.5352, Lng: -117.2109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tinley Park, Illinois 41.5670 -87.8049 matched with DB +City: Tinley Park, state: Illinois, Lat: 41.567, Lng: -87.8049, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sarasota, Florida 27.3387 -82.5432 matched with DB +City: Sarasota, state: Florida, Lat: 27.3387, Lng: -82.5432, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hacienda Heights, California 33.9970 -117.9727 matched with DB +City: Hacienda Heights, state: California, Lat: 33.997, Lng: -117.9727, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chicopee, Massachusetts 42.1764 -72.5719 matched with DB +City: Chicopee, state: Massachusetts, Lat: 42.1764, Lng: -72.5719, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Haven, Connecticut 41.2739 -72.9672 matched with DB +City: West Haven, state: Connecticut, Lat: 41.2739, Lng: -72.9672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Haven, Connecticut 41.2739 -72.9672 matched with DB +City: West Haven, state: Utah, Lat: 41.2083, Lng: -112.0541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Herriman, Utah 40.4899 -112.0170 matched with DB +City: Herriman, state: Utah, Lat: 40.4899, Lng: -112.017, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perth Amboy, New Jersey 40.5202 -74.2724 matched with DB +City: Perth Amboy, state: New Jersey, Lat: 40.5202, Lng: -74.2724, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Casa Grande, Arizona 32.9069 -111.7624 matched with DB +City: Casa Grande, state: Arizona, Lat: 32.9069, Lng: -111.7624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tigard, Oregon 45.4237 -122.7845 matched with DB +City: Tigard, state: Oregon, Lat: 45.4237, Lng: -122.7845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apopka, Florida 28.7015 -81.5316 matched with DB +City: Apopka, state: Florida, Lat: 28.7015, Lng: -81.5316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southaven, Mississippi 34.9514 -89.9786 matched with DB +City: Southaven, state: Mississippi, Lat: 34.9514, Lng: -89.9786, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington Park, California 33.9800 -118.2167 matched with DB +City: Huntington Park, state: California, Lat: 33.98, Lng: -118.2167, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Diamond Bar, California 33.9992 -117.8161 matched with DB +City: Diamond Bar, state: California, Lat: 33.9992, Lng: -117.8161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bentonville, Arkansas 36.3547 -94.2305 matched with DB +City: Bentonville, state: Arkansas, Lat: 36.3547, Lng: -94.2305, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yucaipa, California 34.0336 -117.0429 matched with DB +City: Yucaipa, state: California, Lat: 34.0336, Lng: -117.0429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainfield, New Jersey 40.6154 -74.4157 matched with DB +City: Plainfield, state: New Jersey, Lat: 40.6154, Lng: -74.4157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, New Jersey 40.6154 -74.4157 matched with DB +City: Plainfield, state: Indiana, Lat: 39.6954, Lng: -86.3716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, New Jersey 40.6154 -74.4157 matched with DB +City: Plainfield, state: Illinois, Lat: 41.6207, Lng: -88.2253, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manhattan, Kansas 39.1886 -96.6048 matched with DB +City: Manhattan, state: Kansas, Lat: 39.1886, Lng: -96.6048, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, Kansas 39.1886 -96.6048 matched with DB +City: Manhattan, state: Illinois, Lat: 41.4274, Lng: -87.9805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, Kansas 39.1886 -96.6048 matched with DB +City: Manhattan, state: New York, Lat: 40.7834, Lng: -73.9662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aspen Hill, Maryland 39.0927 -77.0826 matched with DB +City: Aspen Hill, state: Maryland, Lat: 39.0927, Lng: -77.0826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Mount, North Carolina 35.9685 -77.8040 matched with DB +City: Rocky Mount, state: North Carolina, Lat: 35.9685, Lng: -77.804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peabody, Massachusetts 42.5335 -70.9725 matched with DB +City: Peabody, state: Massachusetts, Lat: 42.5335, Lng: -70.9725, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Sacramento, California 38.5557 -121.5505 matched with DB +City: West Sacramento, state: California, Lat: 38.5557, Lng: -121.5505, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Jacinto, California 33.7970 -116.9916 matched with DB +City: San Jacinto, state: California, Lat: 33.797, Lng: -116.9916, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kentwood, Michigan 42.8852 -85.5926 matched with DB +City: Kentwood, state: Michigan, Lat: 42.8852, Lng: -85.5926, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colton, California 34.0538 -117.3255 matched with DB +City: Colton, state: California, Lat: 34.0538, Lng: -117.3255, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Park, Illinois 41.8872 -87.7899 matched with DB +City: Oak Park, state: Michigan, Lat: 42.4649, Lng: -83.1824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, Illinois 41.8872 -87.7899 matched with DB +City: Oak Park, state: Illinois, Lat: 41.8872, Lng: -87.7899, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, Illinois 41.8872 -87.7899 matched with DB +City: Oak Park, state: California, Lat: 34.185, Lng: -118.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westchester, Florida 25.7471 -80.3523 matched with DB +City: Westchester, state: Illinois, Lat: 41.8492, Lng: -87.8906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westchester, Florida 25.7471 -80.3523 matched with DB +City: Westchester, state: Florida, Lat: 25.7471, Lng: -80.3523, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smyrna, Tennessee 35.9687 -86.5264 matched with DB +City: Smyrna, state: Delaware, Lat: 39.2935, Lng: -75.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, Tennessee 35.9687 -86.5264 matched with DB +City: Smyrna, state: Georgia, Lat: 33.8633, Lng: -84.5168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, Tennessee 35.9687 -86.5264 matched with DB +City: Smyrna, state: Tennessee, Lat: 35.9687, Lng: -86.5264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheaton, Illinois 41.8561 -88.1085 matched with DB +City: Wheaton, state: Illinois, Lat: 41.8561, Lng: -88.1085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheaton, Illinois 41.8561 -88.1085 matched with DB +City: Wheaton, state: Maryland, Lat: 39.0492, Lng: -77.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaumont, California 33.9076 -116.9766 matched with DB +City: Beaumont, state: California, Lat: 33.9076, Lng: -116.9766, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beaumont, California 33.9076 -116.9766 matched with DB +City: Beaumont, state: Texas, Lat: 30.0849, Lng: -94.1451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aloha, Oregon 45.4920 -122.8725 matched with DB +City: Aloha, state: Oregon, Lat: 45.492, Lng: -122.8725, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minnetonka, Minnesota 44.9322 -93.4598 matched with DB +City: Minnetonka, state: Minnesota, Lat: 44.9322, Lng: -93.4598, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinellas Park, Florida 27.8589 -82.7078 matched with DB +City: Pinellas Park, state: Florida, Lat: 27.8589, Lng: -82.7078, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kannapolis, North Carolina 35.4764 -80.6408 matched with DB +City: Kannapolis, state: North Carolina, Lat: 35.4764, Lng: -80.6408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paramount, California 33.8977 -118.1651 matched with DB +City: Paramount, state: California, Lat: 33.8977, Lng: -118.1651, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Texas City, Texas 29.4154 -94.9682 matched with DB +City: Texas City, state: Texas, Lat: 29.4154, Lng: -94.9682, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Novato, California 38.0920 -122.5575 matched with DB +City: Novato, state: California, Lat: 38.092, Lng: -122.5575, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edina, Minnesota 44.8914 -93.3602 matched with DB +City: Edina, state: Minnesota, Lat: 44.8914, Lng: -93.3602, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Normal, Illinois 40.5217 -88.9884 matched with DB +City: Normal, state: Illinois, Lat: 40.5217, Lng: -88.9884, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tamiami, Florida 25.7556 -80.4016 matched with DB +City: Tamiami, state: Florida, Lat: 25.7556, Lng: -80.4016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Island, Nebraska 40.9218 -98.3586 matched with DB +City: Grand Island, state: Nebraska, Lat: 40.9218, Lng: -98.3586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grand Island, Nebraska 40.9218 -98.3586 matched with DB +City: Grand Island, state: New York, Lat: 43.0198, Lng: -78.9619, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Methuen Town, Massachusetts 42.7340 -71.1889 matched with DB +City: Methuen Town, state: Massachusetts, Lat: 42.734, Lng: -71.1889, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elyria, Ohio 41.3760 -82.1060 matched with DB +City: Elyria, state: Ohio, Lat: 41.376, Lng: -82.106, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheaton, Maryland 39.0492 -77.0573 matched with DB +City: Wheaton, state: Illinois, Lat: 41.8561, Lng: -88.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheaton, Maryland 39.0492 -77.0573 matched with DB +City: Wheaton, state: Maryland, Lat: 39.0492, Lng: -77.0573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendale Lakes, Florida 25.7081 -80.4078 matched with DB +City: Kendale Lakes, state: Florida, Lat: 25.7081, Lng: -80.4078, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marana, Arizona 32.4355 -111.1558 matched with DB +City: Marana, state: Arizona, Lat: 32.4355, Lng: -111.1558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West New York, New Jersey 40.7857 -74.0094 matched with DB +City: West New York, state: New Jersey, Lat: 40.7857, Lng: -74.0094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Twin Falls, Idaho 42.5645 -114.4613 matched with DB +City: Twin Falls, state: Idaho, Lat: 42.5645, Lng: -114.4613, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florissant, Missouri 38.7996 -90.3269 matched with DB +City: Florissant, state: Missouri, Lat: 38.7996, Lng: -90.3269, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendora, California 34.1449 -117.8467 matched with DB +City: Glendora, state: California, Lat: 34.1449, Lng: -117.8467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cathedral City, California 33.8362 -116.4642 matched with DB +City: Cathedral City, state: California, Lat: 33.8362, Lng: -116.4642, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aliso Viejo, California 33.5792 -117.7289 matched with DB +City: Aliso Viejo, state: California, Lat: 33.5792, Lng: -117.7289, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Placentia, California 33.8807 -117.8553 matched with DB +City: Placentia, state: California, Lat: 33.8807, Lng: -117.8553, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hoffman Estates, Illinois 42.0640 -88.1468 matched with DB +City: Hoffman Estates, state: Illinois, Lat: 42.064, Lng: -88.1468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burien, Washington 47.4762 -122.3394 matched with DB +City: Burien, state: Washington, Lat: 47.4762, Lng: -122.3394, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunwoody, Georgia 33.9418 -84.3122 matched with DB +City: Dunwoody, state: Georgia, Lat: 33.9418, Lng: -84.3122, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Desert, California 33.7378 -116.3695 matched with DB +City: Palm Desert, state: California, Lat: 33.7378, Lng: -116.3695, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, New York 42.7354 -73.6751 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, New York 42.7354 -73.6751 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, New York 42.7354 -73.6751 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, New York 42.7354 -73.6751 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, New York 42.7354 -73.6751 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, New York 42.7354 -73.6751 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collierville, Tennessee 35.0470 -89.6987 matched with DB +City: Collierville, state: Tennessee, Lat: 35.047, Lng: -89.6987, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Levittown, Pennsylvania 40.1533 -74.8531 matched with DB +City: Levittown, state: New York, Lat: 40.7241, Lng: -73.5125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Levittown, Pennsylvania 40.1533 -74.8531 matched with DB +City: Levittown, state: Pennsylvania, Lat: 40.1533, Lng: -74.8531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemead, California 34.0689 -118.0823 matched with DB +City: Rosemead, state: California, Lat: 34.0689, Lng: -118.0823, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Club, Florida 25.9407 -80.3102 matched with DB +City: Country Club, state: California, Lat: 37.9687, Lng: -121.3408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Country Club, Florida 25.9407 -80.3102 matched with DB +City: Country Club, state: Florida, Lat: 25.9407, Lng: -80.3102, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enid, Oklahoma 36.4063 -97.8700 matched with DB +City: Enid, state: Oklahoma, Lat: 36.4063, Lng: -97.87, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cuyahoga Falls, Ohio 41.1641 -81.5207 matched with DB +City: Cuyahoga Falls, state: Ohio, Lat: 41.1641, Lng: -81.5207, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mishawaka, Indiana 41.6742 -86.1666 matched with DB +City: Mishawaka, state: Indiana, Lat: 41.6742, Lng: -86.1666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Indiana 39.2093 -85.9183 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Indiana 39.2093 -85.9183 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Indiana 39.2093 -85.9183 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Indiana 39.2093 -85.9183 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Indiana 39.2093 -85.9183 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerville, South Carolina 33.0016 -80.1799 matched with DB +City: Summerville, state: South Carolina, Lat: 33.0016, Lng: -80.1799, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Levittown, New York 40.7241 -73.5125 matched with DB +City: Levittown, state: New York, Lat: 40.7241, Lng: -73.5125, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Levittown, New York 40.7241 -73.5125 matched with DB +City: Levittown, state: Pennsylvania, Lat: 40.1533, Lng: -74.8531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grapevine, Texas 32.9343 -97.0742 matched with DB +City: Grapevine, state: Texas, Lat: 32.9343, Lng: -97.0742, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covina, California 34.0903 -117.8818 matched with DB +City: Covina, state: California, Lat: 34.0903, Lng: -117.8818, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Draper, Utah 40.4957 -111.8605 matched with DB +City: Draper, state: Utah, Lat: 40.4957, Lng: -111.8605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Ohio 41.4822 -81.8008 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Ohio 41.4822 -81.8008 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Ohio 41.4822 -81.8008 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Ohio 41.4822 -81.8008 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Ohio 41.4822 -81.8008 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Catalina Foothills, Arizona 32.3046 -110.8838 matched with DB +City: Catalina Foothills, state: Arizona, Lat: 32.3046, Lng: -110.8838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delano, California 35.7662 -119.2635 matched with DB +City: Delano, state: California, Lat: 35.7662, Lng: -119.2635, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, California 38.8774 -121.2937 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, California 38.8774 -121.2937 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, California 38.8774 -121.2937 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, California 38.8774 -121.2937 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murray, Utah 40.6498 -111.8874 matched with DB +City: Murray, state: Kentucky, Lat: 36.6146, Lng: -88.3207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Murray, Utah 40.6498 -111.8874 matched with DB +City: Murray, state: Utah, Lat: 40.6498, Lng: -111.8874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mooresville, North Carolina 35.5847 -80.8266 matched with DB +City: Mooresville, state: Indiana, Lat: 39.6022, Lng: -86.3681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mooresville, North Carolina 35.5847 -80.8266 matched with DB +City: Mooresville, state: North Carolina, Lat: 35.5847, Lng: -80.8266, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Downers Grove, Illinois 41.7949 -88.0172 matched with DB +City: Downers Grove, state: Illinois, Lat: 41.7949, Lng: -88.0172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florin, California 38.4832 -121.4043 matched with DB +City: Florin, state: California, Lat: 38.4832, Lng: -121.4043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cypress, California 33.8171 -118.0386 matched with DB +City: Cypress, state: California, Lat: 33.8171, Lng: -118.0386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, Indiana 38.3376 -85.7026 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bethesda, Maryland 39.0393 -77.1191 matched with DB +City: North Bethesda, state: Maryland, Lat: 39.0393, Lng: -77.1191, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Azusa, California 34.1386 -117.9124 matched with DB +City: Azusa, state: California, Lat: 34.1386, Lng: -117.9124, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coral Gables, Florida 25.7037 -80.2715 matched with DB +City: Coral Gables, state: Florida, Lat: 25.7037, Lng: -80.2715, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesterfield, Missouri 38.6589 -90.5803 matched with DB +City: Chesterfield, state: Missouri, Lat: 38.6589, Lng: -90.5803, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chesterfield, Missouri 38.6589 -90.5803 matched with DB +City: Chesterfield, state: New Jersey, Lat: 40.1166, Lng: -74.6459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McLean, Virginia 38.9436 -77.1943 matched with DB +City: McLean, state: Virginia, Lat: 38.9436, Lng: -77.1943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Louis Park, Minnesota 44.9488 -93.3649 matched with DB +City: St. Louis Park, state: Minnesota, Lat: 44.9488, Lng: -93.3649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Honolulu, Hawaii 21.2975 -157.7211 matched with DB +City: East Honolulu, state: Hawaii, Lat: 21.2975, Lng: -157.7211, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Texas 32.8464 -97.1350 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Texas 32.8464 -97.1350 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Texas 32.8464 -97.1350 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Texas 32.8464 -97.1350 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Texas 32.8464 -97.1350 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Texas 32.8464 -97.1350 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Euclid, Ohio 41.5903 -81.5188 matched with DB +City: Euclid, state: Ohio, Lat: 41.5903, Lng: -81.5188, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Indiana 39.8674 -85.9904 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Indiana 39.8674 -85.9904 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Indiana 39.8674 -85.9904 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Indiana 39.8674 -85.9904 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ceres, California 37.5952 -120.9620 matched with DB +City: Ceres, state: California, Lat: 37.5952, Lng: -120.962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University, Florida 28.0771 -82.4335 matched with DB +City: University, state: Florida, Lat: 28.0771, Lng: -82.4335, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Biloxi, Mississippi 30.4426 -88.9514 matched with DB +City: Biloxi, state: Mississippi, Lat: 30.4426, Lng: -88.9514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Dorado Hills, California 38.6750 -121.0490 matched with DB +City: El Dorado Hills, state: California, Lat: 38.675, Lng: -121.049, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cerritos, California 33.8678 -118.0686 matched with DB +City: Cerritos, state: California, Lat: 33.8678, Lng: -118.0686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burleson, Texas 32.5170 -97.3344 matched with DB +City: Burleson, state: Texas, Lat: 32.517, Lng: -97.3344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage, Michigan 42.2000 -85.5906 matched with DB +City: Portage, state: Wisconsin, Lat: 43.5489, Lng: -89.4658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Michigan 42.2000 -85.5906 matched with DB +City: Portage, state: Michigan, Lat: 42.2, Lng: -85.5906, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Michigan 42.2000 -85.5906 matched with DB +City: Portage, state: Indiana, Lat: 41.5856, Lng: -87.1797, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Ohio 40.1112 -83.1454 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Ohio 40.1112 -83.1454 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Ohio 40.1112 -83.1454 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poway, California 32.9871 -117.0201 matched with DB +City: Poway, state: California, Lat: 32.9871, Lng: -117.0201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Hill, Texas 32.5810 -96.9591 matched with DB +City: Cedar Hill, state: Texas, Lat: 32.581, Lng: -96.9591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Everett, Massachusetts 42.4064 -71.0545 matched with DB +City: Everett, state: Massachusetts, Lat: 42.4064, Lng: -71.0545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Everett, Massachusetts 42.4064 -71.0545 matched with DB +City: Everett, state: Washington, Lat: 47.9525, Lng: -122.1669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stillwater, Oklahoma 36.1317 -97.0742 matched with DB +City: Stillwater, state: New York, Lat: 42.9701, Lng: -73.6885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stillwater, Oklahoma 36.1317 -97.0742 matched with DB +City: Stillwater, state: Minnesota, Lat: 45.0573, Lng: -92.8313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stillwater, Oklahoma 36.1317 -97.0742 matched with DB +City: Stillwater, state: Oklahoma, Lat: 36.1317, Lng: -97.0742, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Titusville, Florida 28.5727 -80.8193 matched with DB +City: Titusville, state: Florida, Lat: 28.5727, Lng: -80.8193, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niagara Falls, New York 43.0921 -79.0147 matched with DB +City: Niagara Falls, state: New York, Lat: 43.0921, Lng: -79.0147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kyle, Texas 29.9932 -97.8852 matched with DB +City: Kyle, state: Texas, Lat: 29.9932, Lng: -97.8852, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, Virginia 39.1057 -77.5544 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, Virginia 39.1057 -77.5544 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, Indiana 40.0341 -86.1529 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Indiana 40.0341 -86.1529 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Indiana 40.0341 -86.1529 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Elm, Texas 33.1858 -96.9295 matched with DB +City: Little Elm, state: Texas, Lat: 33.1858, Lng: -96.9295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Connecticut 41.5476 -72.6549 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Highlands, California 38.6713 -121.3721 matched with DB +City: North Highlands, state: California, Lat: 38.6713, Lng: -121.3721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuckahoe, Virginia 37.5878 -77.5858 matched with DB +City: Tuckahoe, state: Virginia, Lat: 37.5878, Lng: -77.5858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wake Forest, North Carolina 35.9632 -78.5140 matched with DB +City: Wake Forest, state: North Carolina, Lat: 35.9632, Lng: -78.514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minot, North Dakota 48.2375 -101.2780 matched with DB +City: Minot, state: North Dakota, Lat: 48.2375, Lng: -101.278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roswell, New Mexico 33.3730 -104.5294 matched with DB +City: Roswell, state: Georgia, Lat: 34.0391, Lng: -84.3513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roswell, New Mexico 33.3730 -104.5294 matched with DB +City: Roswell, state: New Mexico, Lat: 33.373, Lng: -104.5294, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wauwatosa, Wisconsin 43.0616 -88.0347 matched with DB +City: Wauwatosa, state: Wisconsin, Lat: 43.0616, Lng: -88.0347, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bothell, Washington 47.7735 -122.2044 matched with DB +City: Bothell, state: Washington, Lat: 47.7735, Lng: -122.2044, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenview, Illinois 42.0825 -87.8214 matched with DB +City: Glenview, state: Illinois, Lat: 42.0825, Lng: -87.8214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockwall, Texas 32.9169 -96.4374 matched with DB +City: Rockwall, state: Texas, Lat: 32.9169, Lng: -96.4374, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, North Carolina 35.7311 -77.9284 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho Santa Margarita, California 33.6318 -117.5988 matched with DB +City: Rancho Santa Margarita, state: California, Lat: 33.6318, Lng: -117.5988, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Mirada, California 33.9025 -118.0093 matched with DB +City: La Mirada, state: California, Lat: 33.9025, Lng: -118.0093, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antelope, California 38.7153 -121.3610 matched with DB +City: Antelope, state: California, Lat: 38.7153, Lng: -121.361, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hilo, Hawaii 19.6883 -155.0863 matched with DB +City: Hilo, state: Hawaii, Lat: 19.6883, Lng: -155.0863, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Luis Obispo, California 35.2669 -120.6690 matched with DB +City: San Luis Obispo, state: California, Lat: 35.2669, Lng: -120.669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, Michigan 42.5074 -82.9369 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Michigan 42.5074 -82.9369 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Michigan 42.5074 -82.9369 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, California 37.5201 -122.0307 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, California 37.5201 -122.0307 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, California 37.5201 -122.0307 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, California 37.5201 -122.0307 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, California 37.5201 -122.0307 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentor, Ohio 41.6893 -81.3362 matched with DB +City: Mentor, state: Ohio, Lat: 41.6893, Lng: -81.3362, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocoee, Florida 28.5796 -81.5332 matched with DB +City: Ocoee, state: Florida, Lat: 28.5796, Lng: -81.5332, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rowland Heights, California 33.9716 -117.8912 matched with DB +City: Rowland Heights, state: California, Lat: 33.9716, Lng: -117.8912, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Pierce, Florida 27.4255 -80.3431 matched with DB +City: Fort Pierce, state: Florida, Lat: 27.4255, Lng: -80.3431, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brea, California 33.9254 -117.8655 matched with DB +City: Brea, state: California, Lat: 33.9254, Lng: -117.8655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oro Valley, Arizona 32.4208 -110.9767 matched with DB +City: Oro Valley, state: Arizona, Lat: 32.4208, Lng: -110.9767, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Providence, Rhode Island 41.8065 -71.3565 matched with DB +City: East Providence, state: Rhode Island, Lat: 41.8065, Lng: -71.3565, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl City, Hawaii 21.4031 -157.9566 matched with DB +City: Pearl City, state: Hawaii, Lat: 21.4031, Lng: -157.9566, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salina, Kansas 38.8136 -97.6143 matched with DB +City: Salina, state: Kansas, Lat: 38.8136, Lng: -97.6143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salina, Kansas 38.8136 -97.6143 matched with DB +City: Salina, state: New York, Lat: 43.1023, Lng: -76.1768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beavercreek, Ohio 39.7310 -84.0624 matched with DB +City: Beavercreek, state: Ohio, Lat: 39.731, Lng: -84.0624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winter Garden, Florida 28.5421 -81.5967 matched with DB +City: Winter Garden, state: Florida, Lat: 28.5421, Lng: -81.5967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Potomac, Maryland 39.0141 -77.1943 matched with DB +City: Potomac, state: Maryland, Lat: 39.0141, Lng: -77.1943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, New Mexico 36.7555 -108.1823 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, New Mexico 36.7555 -108.1823 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, New Mexico 36.7555 -108.1823 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, New Mexico 36.7555 -108.1823 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, New Mexico 36.7555 -108.1823 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, New Mexico 36.7555 -108.1823 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Attleboro, Massachusetts 41.9311 -71.2950 matched with DB +City: Attleboro, state: Massachusetts, Lat: 41.9311, Lng: -71.295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Texas 30.7009 -95.5567 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Texas 30.7009 -95.5567 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Strongsville, Ohio 41.3128 -81.8313 matched with DB +City: Strongsville, state: Ohio, Lat: 41.3128, Lng: -81.8313, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle Mountain, Utah 40.3137 -112.0114 matched with DB +City: Eagle Mountain, state: Utah, Lat: 40.3137, Lng: -112.0114, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Arizona 34.5849 -112.4473 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olive Branch, Mississippi 34.9610 -89.8469 matched with DB +City: Olive Branch, state: Mississippi, Lat: 34.961, Lng: -89.8469, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goose Creek, South Carolina 32.9927 -80.0055 matched with DB +City: Goose Creek, state: South Carolina, Lat: 32.9927, Lng: -80.0055, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sicklerville, New Jersey 39.7452 -74.9934 matched with DB +City: Sicklerville, state: New Jersey, Lat: 39.7452, Lng: -74.9934, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamonte Springs, Florida 28.6615 -81.3953 matched with DB +City: Altamonte Springs, state: Florida, Lat: 28.6615, Lng: -81.3953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haltom City, Texas 32.8176 -97.2707 matched with DB +City: Haltom City, state: Texas, Lat: 32.8176, Lng: -97.2707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hackensack, New Jersey 40.8891 -74.0462 matched with DB +City: Hackensack, state: New Jersey, Lat: 40.8891, Lng: -74.0462, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmhurst, Illinois 41.8973 -87.9432 matched with DB +City: Elmhurst, state: Illinois, Lat: 41.8973, Lng: -87.9432, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbandale, Iowa 41.6390 -93.7812 matched with DB +City: Urbandale, state: Iowa, Lat: 41.639, Lng: -93.7812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Banos, California 37.0630 -120.8406 matched with DB +City: Los Banos, state: California, Lat: 37.063, Lng: -120.8406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Littleton, Colorado 39.5915 -105.0188 matched with DB +City: Littleton, state: Colorado, Lat: 39.5915, Lng: -105.0188, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Littleton, Colorado 39.5915 -105.0188 matched with DB +City: Littleton, state: Massachusetts, Lat: 42.535, Lng: -71.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashburn, Virginia 39.0277 -77.4714 matched with DB +City: Ashburn, state: Virginia, Lat: 39.0277, Lng: -77.4714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Lansing, Michigan 42.7480 -84.4836 matched with DB +City: East Lansing, state: Michigan, Lat: 42.748, Lng: -84.4836, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bountiful, Utah 40.8721 -111.8647 matched with DB +City: Bountiful, state: Utah, Lat: 40.8721, Lng: -111.8647, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keller, Texas 32.9335 -97.2256 matched with DB +City: Keller, state: Texas, Lat: 32.9335, Lng: -97.2256, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgan Hill, California 37.1325 -121.6419 matched with DB +City: Morgan Hill, state: California, Lat: 37.1325, Lng: -121.6419, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sierra Vista, Arizona 31.5630 -110.3153 matched with DB +City: Sierra Vista, state: Arizona, Lat: 31.563, Lng: -110.3153, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sayreville, New Jersey 40.4656 -74.3237 matched with DB +City: Sayreville, state: New Jersey, Lat: 40.4656, Lng: -74.3237, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odenton, Maryland 39.0661 -76.6938 matched with DB +City: Odenton, state: Maryland, Lat: 39.0661, Lng: -76.6938, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland Heights, Ohio 41.5113 -81.5636 matched with DB +City: Cleveland Heights, state: Ohio, Lat: 41.5113, Lng: -81.5636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gallatin, Tennessee 36.3782 -86.4698 matched with DB +City: Gallatin, state: Tennessee, Lat: 36.3782, Lng: -86.4698, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainfield, Illinois 41.6207 -88.2253 matched with DB +City: Plainfield, state: New Jersey, Lat: 40.6154, Lng: -74.4157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Illinois 41.6207 -88.2253 matched with DB +City: Plainfield, state: Indiana, Lat: 39.6954, Lng: -86.3716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Illinois 41.6207 -88.2253 matched with DB +City: Plainfield, state: Illinois, Lat: 41.6207, Lng: -88.2253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Springs, California 33.8017 -116.5382 matched with DB +City: Palm Springs, state: Florida, Lat: 26.6348, Lng: -80.0969, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palm Springs, California 33.8017 -116.5382 matched with DB +City: Palm Springs, state: California, Lat: 33.8017, Lng: -116.5382, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Utah 40.5176 -111.9636 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Utah 40.5176 -111.9636 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Lafayette, Indiana 40.4432 -86.9238 matched with DB +City: West Lafayette, state: Indiana, Lat: 40.4432, Lng: -86.9238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brentwood, Tennessee 35.9918 -86.7758 matched with DB +City: Brentwood, state: Pennsylvania, Lat: 40.3734, Lng: -79.9757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Tennessee 35.9918 -86.7758 matched with DB +City: Brentwood, state: New York, Lat: 40.7839, Lng: -73.2522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Tennessee 35.9918 -86.7758 matched with DB +City: Brentwood, state: Tennessee, Lat: 35.9918, Lng: -86.7758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Tennessee 35.9918 -86.7758 matched with DB +City: Brentwood, state: California, Lat: 37.9356, Lng: -121.719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cutler Bay, Florida 25.5765 -80.3356 matched with DB +City: Cutler Bay, state: Florida, Lat: 25.5765, Lng: -80.3356, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Ridge, Virginia 38.6847 -77.3066 matched with DB +City: Lake Ridge, state: Virginia, Lat: 38.6847, Lng: -77.3066, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitney, Nevada 36.1008 -115.0379 matched with DB +City: Whitney, state: Nevada, Lat: 36.1008, Lng: -115.0379, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pahrump, Nevada 36.2235 -115.9974 matched with DB +City: Pahrump, state: Nevada, Lat: 36.2235, Lng: -115.9974, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Lauderdale, Florida 26.2113 -80.2209 matched with DB +City: North Lauderdale, state: Florida, Lat: 26.2113, Lng: -80.2209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Ohio 39.3301 -84.5409 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Ohio 39.3301 -84.5409 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Ohio 39.3301 -84.5409 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Ohio 39.3301 -84.5409 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wentzville, Missouri 38.8153 -90.8669 matched with DB +City: Wentzville, state: Missouri, Lat: 38.8153, Lng: -90.8669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Massachusetts 42.5129 -70.9021 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Massachusetts 42.5129 -70.9021 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Massachusetts 42.5129 -70.9021 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Massachusetts 42.5129 -70.9021 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Massachusetts 42.5129 -70.9021 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Massachusetts 42.5129 -70.9021 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fond du Lac, Wisconsin 43.7718 -88.4397 matched with DB +City: Fond du Lac, state: Wisconsin, Lat: 43.7718, Lng: -88.4397, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rohnert Park, California 38.3479 -122.6965 matched with DB +City: Rohnert Park, state: California, Lat: 38.3479, Lng: -122.6965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mankato, Minnesota 44.1715 -93.9772 matched with DB +City: Mankato, state: Minnesota, Lat: 44.1715, Lng: -93.9772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moorhead, Minnesota 46.8673 -96.7461 matched with DB +City: Moorhead, state: Minnesota, Lat: 46.8673, Lng: -96.7461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Colony, Texas 33.0925 -96.8976 matched with DB +City: The Colony, state: Texas, Lat: 33.0925, Lng: -96.8976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burke, Virginia 38.7773 -77.2633 matched with DB +City: Burke, state: Virginia, Lat: 38.7773, Lng: -77.2633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, New York 40.6515 -73.5850 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, New York 40.6515 -73.5850 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, New York 40.6515 -73.5850 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, New York 40.6515 -73.5850 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Centro, California 32.7865 -115.5595 matched with DB +City: El Centro, state: California, Lat: 32.7865, Lng: -115.5595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shakopee, Minnesota 44.7745 -93.4772 matched with DB +City: Shakopee, state: Minnesota, Lat: 44.7745, Lng: -93.4772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilkes-Barre, Pennsylvania 41.2469 -75.8760 matched with DB +City: Wilkes-Barre, state: Pennsylvania, Lat: 41.2469, Lng: -75.876, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lompoc, California 34.6618 -120.4714 matched with DB +City: Lompoc, state: California, Lat: 34.6618, Lng: -120.4714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hicksville, New York 40.7637 -73.5245 matched with DB +City: Hicksville, state: New York, Lat: 40.7637, Lng: -73.5245, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland Park, Florida 26.1780 -80.1528 matched with DB +City: Oakland Park, state: Florida, Lat: 26.178, Lng: -80.1528, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lombard, Illinois 41.8741 -88.0157 matched with DB +City: Lombard, state: Illinois, Lat: 41.8741, Lng: -88.0157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, New Hampshire 43.2305 -71.5595 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, New Hampshire 43.2305 -71.5595 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, New Hampshire 43.2305 -71.5595 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, New Hampshire 43.2305 -71.5595 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, New Hampshire 43.2305 -71.5595 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, New Hampshire 43.2305 -71.5595 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsfield, Massachusetts 42.4517 -73.2605 matched with DB +City: Pittsfield, state: Massachusetts, Lat: 42.4517, Lng: -73.2605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenacres, Florida 26.6270 -80.1371 matched with DB +City: Greenacres, state: Florida, Lat: 26.627, Lng: -80.1371, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakley, California 37.9929 -121.6952 matched with DB +City: Oakley, state: California, Lat: 37.9929, Lng: -121.6952, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, New Jersey 40.6251 -74.2383 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, California 37.2802 -121.9539 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, California 37.8121 -121.9698 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, California 37.8121 -121.9698 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, California 37.8121 -121.9698 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, California 37.8121 -121.9698 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, California 37.8121 -121.9698 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Miami Beach, Florida 25.9302 -80.1659 matched with DB +City: North Miami Beach, state: Florida, Lat: 25.9302, Lng: -80.1659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clermont, Florida 28.5325 -81.7208 matched with DB +City: Clermont, state: Florida, Lat: 28.5325, Lng: -81.7208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Bruno, California 37.6256 -122.4313 matched with DB +City: San Bruno, state: California, Lat: 37.6256, Lng: -122.4313, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Channelview, Texas 29.7914 -95.1144 matched with DB +City: Channelview, state: Texas, Lat: 29.7914, Lng: -95.1144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ormond Beach, Florida 29.2985 -81.1014 matched with DB +City: Ormond Beach, state: Florida, Lat: 29.2985, Lng: -81.1014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huber Heights, Ohio 39.8595 -84.1130 matched with DB +City: Huber Heights, state: Ohio, Lat: 39.8595, Lng: -84.113, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woonsocket, Rhode Island 42.0010 -71.4993 matched with DB +City: Woonsocket, state: Rhode Island, Lat: 42.001, Lng: -71.4993, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo Grove, Illinois 42.1675 -87.9615 matched with DB +City: Buffalo Grove, state: Illinois, Lat: 42.1675, Lng: -87.9615, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Babylon, New York 40.7129 -73.3585 matched with DB +City: West Babylon, state: New York, Lat: 40.7129, Lng: -73.3585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Catonsville, Maryland 39.2646 -76.7424 matched with DB +City: Catonsville, state: Maryland, Lat: 39.2646, Lng: -76.7424, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altadena, California 34.1927 -118.1346 matched with DB +City: Altadena, state: California, Lat: 34.1927, Lng: -118.1346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edmonds, Washington 47.8115 -122.3533 matched with DB +City: Edmonds, state: Washington, Lat: 47.8115, Lng: -122.3533, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linton Hall, Virginia 38.7551 -77.5750 matched with DB +City: Linton Hall, state: Virginia, Lat: 38.7551, Lng: -77.575, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spanish Fork, Utah 40.1101 -111.6405 matched with DB +City: Spanish Fork, state: Utah, Lat: 40.1101, Lng: -111.6405, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newnan, Georgia 33.3767 -84.7761 matched with DB +City: Newnan, state: Georgia, Lat: 33.3767, Lng: -84.7761, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vineyard, California 38.4740 -121.3240 matched with DB +City: Vineyard, state: California, Lat: 38.474, Lng: -121.324, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vineyard, California 38.4740 -121.3240 matched with DB +City: Vineyard, state: Utah, Lat: 40.3059, Lng: -111.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson City, Missouri 38.5676 -92.1759 matched with DB +City: Jefferson City, state: Missouri, Lat: 38.5676, Lng: -92.1759, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manassas, Virginia 38.7479 -77.4838 matched with DB +City: Manassas, state: Virginia, Lat: 38.7479, Lng: -77.4838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbridge, Virginia 38.6409 -77.2580 matched with DB +City: Woodbridge, state: Virginia, Lat: 38.6409, Lng: -77.258, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbridge, Virginia 38.6409 -77.2580 matched with DB +City: Woodbridge, state: New Jersey, Lat: 40.5611, Lng: -74.2943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Puyallup, Washington 47.1793 -122.2902 matched with DB +City: Puyallup, state: Washington, Lat: 47.1793, Lng: -122.2902, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Schertz, Texas 29.5650 -98.2535 matched with DB +City: Schertz, state: Texas, Lat: 29.565, Lng: -98.2535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coppell, Texas 32.9639 -96.9903 matched with DB +City: Coppell, state: Texas, Lat: 32.9639, Lng: -96.9903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Virginia 36.5831 -79.4088 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Virginia 36.5831 -79.4088 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Virginia 36.5831 -79.4088 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Virginia 36.5831 -79.4088 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Virginia 36.5831 -79.4088 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Fort Myers, Florida 26.7244 -81.8485 matched with DB +City: North Fort Myers, state: Florida, Lat: 26.7244, Lng: -81.8485, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Tennessee 35.6238 -87.0484 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Tennessee 35.6238 -87.0484 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Tennessee 35.6238 -87.0484 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Tennessee 35.6238 -87.0484 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Tennessee 35.6238 -87.0484 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Tennessee 35.6238 -87.0484 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moline, Illinois 41.4821 -90.4920 matched with DB +City: Moline, state: Illinois, Lat: 41.4821, Lng: -90.492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, Massachusetts 42.5681 -70.8627 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Michigan 43.6241 -84.2319 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Michigan 43.6241 -84.2319 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Michigan 43.6241 -84.2319 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annandale, Virginia 38.8324 -77.1960 matched with DB +City: Annandale, state: Virginia, Lat: 38.8324, Lng: -77.196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coachella, California 33.6905 -116.1430 matched with DB +City: Coachella, state: California, Lat: 33.6905, Lng: -116.143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, Maryland 39.3054 -76.7489 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, Maryland 39.3054 -76.7489 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadow Woods, Florida 28.3698 -81.3467 matched with DB +City: Meadow Woods, state: Florida, Lat: 28.3698, Lng: -81.3467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coram, New York 40.8812 -73.0059 matched with DB +City: Coram, state: New York, Lat: 40.8812, Lng: -73.0059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Illinois 38.5164 -89.9900 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Illinois 38.5164 -89.9900 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peachtree Corners, Georgia 33.9670 -84.2320 matched with DB +City: Peachtree Corners, state: Georgia, Lat: 33.967, Lng: -84.232, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollister, California 36.8555 -121.3986 matched with DB +City: Hollister, state: California, Lat: 36.8555, Lng: -121.3986, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holly Springs, North Carolina 35.6526 -78.8399 matched with DB +City: Holly Springs, state: Georgia, Lat: 34.1681, Lng: -84.4847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Holly Springs, North Carolina 35.6526 -78.8399 matched with DB +City: Holly Springs, state: North Carolina, Lat: 35.6526, Lng: -78.8399, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delaware, Ohio 40.2851 -83.0741 matched with DB +City: Delaware, state: Ohio, Lat: 40.2851, Lng: -83.0741, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho Palos Verdes, California 33.7554 -118.3634 matched with DB +City: Rancho Palos Verdes, state: California, Lat: 33.7554, Lng: -118.3634, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waxahachie, Texas 32.4035 -96.8446 matched with DB +City: Waxahachie, state: Texas, Lat: 32.4035, Lng: -96.8446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mableton, Georgia 33.8133 -84.5655 matched with DB +City: Mableton, state: Georgia, Lat: 33.8133, Lng: -84.5655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fitchburg, Massachusetts 42.5912 -71.8156 matched with DB +City: Fitchburg, state: Massachusetts, Lat: 42.5912, Lng: -71.8156, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fitchburg, Massachusetts 42.5912 -71.8156 matched with DB +City: Fitchburg, state: Wisconsin, Lat: 42.9859, Lng: -89.4255, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bullhead City, Arizona 35.1205 -114.5461 matched with DB +City: Bullhead City, state: Arizona, Lat: 35.1205, Lng: -114.5461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grove City, Ohio 39.8654 -83.0690 matched with DB +City: Grove City, state: Ohio, Lat: 39.8654, Lng: -83.069, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maplewood, Minnesota 44.9842 -93.0247 matched with DB +City: Maplewood, state: Minnesota, Lat: 44.9842, Lng: -93.0247, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maplewood, Minnesota 44.9842 -93.0247 matched with DB +City: Maplewood, state: New Jersey, Lat: 40.733, Lng: -74.2712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Iowa 42.0451 -91.5850 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Iowa 42.0451 -91.5850 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Iowa 42.0451 -91.5850 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Iowa 42.0451 -91.5850 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Iowa 42.0451 -91.5850 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlborough, Massachusetts 42.3494 -71.5468 matched with DB +City: Marlborough, state: Massachusetts, Lat: 42.3494, Lng: -71.5468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marlborough, Massachusetts 42.3494 -71.5468 matched with DB +City: Marlborough, state: New York, Lat: 41.6337, Lng: -73.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookfield, Wisconsin 43.0640 -88.1231 matched with DB +City: Brookfield, state: Wisconsin, Lat: 43.064, Lng: -88.1231, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookfield, Wisconsin 43.0640 -88.1231 matched with DB +City: Brookfield, state: Illinois, Lat: 41.8245, Lng: -87.847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: French Valley, California 33.5999 -117.1069 matched with DB +City: French Valley, state: California, Lat: 33.5999, Lng: -117.1069, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelton, Connecticut 41.3060 -73.1383 matched with DB +City: Shelton, state: Connecticut, Lat: 41.306, Lng: -73.1383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelton, Connecticut 41.3060 -73.1383 matched with DB +City: Shelton, state: Washington, Lat: 47.2186, Lng: -123.1121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Bluff, Arkansas 34.2116 -92.0173 matched with DB +City: Pine Bluff, state: Arkansas, Lat: 34.2116, Lng: -92.0173, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kearny, New Jersey 40.7528 -74.1202 matched with DB +City: Kearny, state: New Jersey, Lat: 40.7528, Lng: -74.1202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hallandale Beach, Florida 25.9854 -80.1423 matched with DB +City: Hallandale Beach, state: Florida, Lat: 25.9854, Lng: -80.1423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Germantown, Tennessee 35.0829 -89.7824 matched with DB +City: Germantown, state: Wisconsin, Lat: 43.2343, Lng: -88.1217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Tennessee 35.0829 -89.7824 matched with DB +City: Germantown, state: Maryland, Lat: 39.1755, Lng: -77.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Tennessee 35.0829 -89.7824 matched with DB +City: Germantown, state: Tennessee, Lat: 35.0829, Lng: -89.7824, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Georgia 34.1353 -84.3139 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Georgia 34.1353 -84.3139 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Georgia 34.1353 -84.3139 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Georgia 34.1353 -84.3139 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Georgia 34.1353 -84.3139 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Georgia 34.1353 -84.3139 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woburn, Massachusetts 42.4869 -71.1543 matched with DB +City: Woburn, state: Massachusetts, Lat: 42.4869, Lng: -71.1543, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Texas 32.5922 -96.7739 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Texas 32.5922 -96.7739 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Texas 32.5922 -96.7739 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Texas 32.5922 -96.7739 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Texas 32.5922 -96.7739 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Texas 32.5922 -96.7739 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reynoldsburg, Ohio 39.9588 -82.7943 matched with DB +City: Reynoldsburg, state: Ohio, Lat: 39.9588, Lng: -82.7943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Kentucky 39.0334 -84.5166 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Kentucky 39.0334 -84.5166 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Kentucky 39.0334 -84.5166 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Kentucky 39.0334 -84.5166 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Kentucky 39.0334 -84.5166 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Friendswood, Texas 29.5110 -95.1981 matched with DB +City: Friendswood, state: Texas, Lat: 29.511, Lng: -95.1981, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weslaco, Texas 26.1599 -97.9877 matched with DB +City: Weslaco, state: Texas, Lat: 26.1599, Lng: -97.9877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Land O' Lakes, Florida 28.2075 -82.4476 matched with DB +City: Land O' Lakes, state: Florida, Lat: 28.2075, Lng: -82.4476, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex, Maryland 39.3021 -76.4449 matched with DB +City: Essex, state: Maryland, Lat: 39.3021, Lng: -76.4449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Essex, Maryland 39.3021 -76.4449 matched with DB +City: Essex, state: Vermont, Lat: 44.5196, Lng: -73.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlett, Illinois 41.9804 -88.2071 matched with DB +City: Bartlett, state: Illinois, Lat: 41.9804, Lng: -88.2071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bartlett, Illinois 41.9804 -88.2071 matched with DB +City: Bartlett, state: Tennessee, Lat: 35.2337, Lng: -89.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, Massachusetts 42.1382 -72.7561 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Massachusetts 42.1382 -72.7561 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Massachusetts 42.1382 -72.7561 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annapolis, Maryland 38.9706 -76.5047 matched with DB +City: Annapolis, state: Maryland, Lat: 38.9706, Lng: -76.5047, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DeKalb, Illinois 41.9314 -88.7481 matched with DB +City: DeKalb, state: Illinois, Lat: 41.9314, Lng: -88.7481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Falls, Iowa 42.5195 -92.4536 matched with DB +City: Cedar Falls, state: Iowa, Lat: 42.5195, Lng: -92.4536, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Ohio 39.7248 -82.6049 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Ohio 39.7248 -82.6049 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Ohio 39.7248 -82.6049 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Ohio 39.7248 -82.6049 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Ohio 39.7248 -82.6049 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Ohio 39.7248 -82.6049 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Colorado 39.9716 -104.7963 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Colorado 39.9716 -104.7963 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Colorado 39.9716 -104.7963 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal Lake, Illinois 42.2333 -88.3351 matched with DB +City: Crystal Lake, state: Illinois, Lat: 42.2333, Lng: -88.3351, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Oswego, Oregon 45.4129 -122.7004 matched with DB +City: Lake Oswego, state: Oregon, Lat: 45.4129, Lng: -122.7004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Severna Park, Maryland 39.0870 -76.5687 matched with DB +City: Severna Park, state: Maryland, Lat: 39.087, Lng: -76.5687, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Findlay, Ohio 41.0469 -83.6379 matched with DB +City: Findlay, state: Ohio, Lat: 41.0469, Lng: -83.6379, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga Springs, Utah 40.3450 -111.9154 matched with DB +City: Saratoga Springs, state: New York, Lat: 43.0674, Lng: -73.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Saratoga Springs, Utah 40.3450 -111.9154 matched with DB +City: Saratoga Springs, state: Utah, Lat: 40.345, Lng: -111.9154, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Berlin, Wisconsin 42.9726 -88.1291 matched with DB +City: New Berlin, state: Wisconsin, Lat: 42.9726, Lng: -88.1291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Culver City, California 34.0058 -118.3968 matched with DB +City: Culver City, state: California, Lat: 34.0058, Lng: -118.3968, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indian Trail, North Carolina 35.0699 -80.6452 matched with DB +City: Indian Trail, state: North Carolina, Lat: 35.0699, Lng: -80.6452, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncanville, Texas 32.6460 -96.9127 matched with DB +City: Duncanville, state: Texas, Lat: 32.646, Lng: -96.9127, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Stream, New York 40.6647 -73.7043 matched with DB +City: Valley Stream, state: New York, Lat: 40.6647, Lng: -73.7043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Maryland 38.7499 -76.9063 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Acreage, Florida 26.7740 -80.2779 matched with DB +City: The Acreage, state: Florida, Lat: 26.774, Lng: -80.2779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Romeoville, Illinois 41.6318 -88.0997 matched with DB +City: Romeoville, state: Illinois, Lat: 41.6318, Lng: -88.0997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hurst, Texas 32.8353 -97.1809 matched with DB +City: Hurst, state: Texas, Lat: 32.8353, Lng: -97.1809, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Post Falls, Idaho 47.7213 -116.9384 matched with DB +City: Post Falls, state: Idaho, Lat: 47.7213, Lng: -116.9384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hutchinson, Kansas 38.0671 -97.9081 matched with DB +City: Hutchinson, state: Kansas, Lat: 38.0671, Lng: -97.9081, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hutchinson, Kansas 38.0671 -97.9081 matched with DB +City: Hutchinson, state: Minnesota, Lat: 44.8855, Lng: -94.3768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, Massachusetts 42.3959 -71.0325 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, Massachusetts 42.3959 -71.0325 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waipahu, Hawaii 21.3859 -158.0101 matched with DB +City: Waipahu, state: Hawaii, Lat: 21.3859, Lng: -158.0101, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynnwood, Washington 47.8284 -122.3033 matched with DB +City: Lynnwood, state: Washington, Lat: 47.8284, Lng: -122.3033, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Park, Michigan 42.2432 -83.1811 matched with DB +City: Lincoln Park, state: New Jersey, Lat: 40.9239, Lng: -74.3035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln Park, Michigan 42.2432 -83.1811 matched with DB +City: Lincoln Park, state: Michigan, Lat: 42.2432, Lng: -83.1811, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Lee, New Jersey 40.8509 -73.9713 matched with DB +City: Fort Lee, state: New Jersey, Lat: 40.8509, Lng: -73.9713, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cape Girardeau, Missouri 37.3109 -89.5597 matched with DB +City: Cape Girardeau, state: Missouri, Lat: 37.3109, Lng: -89.5597, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobbs, New Mexico 32.7281 -103.1600 matched with DB +City: Hobbs, state: New Mexico, Lat: 32.7281, Lng: -103.16, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carol Stream, Illinois 41.9181 -88.1307 matched with DB +City: Carol Stream, state: Illinois, Lat: 41.9181, Lng: -88.1307, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plant City, Florida 28.0140 -82.1201 matched with DB +City: Plant City, state: Florida, Lat: 28.014, Lng: -82.1201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aventura, Florida 25.9566 -80.1371 matched with DB +City: Aventura, state: Florida, Lat: 25.9566, Lng: -80.1371, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Tennessee 36.2040 -86.3481 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Streamwood, Illinois 42.0209 -88.1779 matched with DB +City: Streamwood, state: Illinois, Lat: 42.0209, Lng: -88.1779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oviedo, Florida 28.6580 -81.1872 matched with DB +City: Oviedo, state: Florida, Lat: 28.658, Lng: -81.1872, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Juliet, Tennessee 36.1990 -86.5115 matched with DB +City: Mount Juliet, state: Tennessee, Lat: 36.199, Lng: -86.5115, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, Illinois 39.9336 -91.3799 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, Illinois 39.9336 -91.3799 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Issaquah, Washington 47.5439 -122.0471 matched with DB +City: Issaquah, state: Washington, Lat: 47.5439, Lng: -122.0471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkland, Washington 47.1417 -122.4376 matched with DB +City: Parkland, state: Florida, Lat: 26.3219, Lng: -80.2533, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parkland, Washington 47.1417 -122.4376 matched with DB +City: Parkland, state: Washington, Lat: 47.1417, Lng: -122.4376, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Ridge, Illinois 42.0125 -87.8436 matched with DB +City: Park Ridge, state: New Jersey, Lat: 41.0352, Lng: -74.0423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Park Ridge, Illinois 42.0125 -87.8436 matched with DB +City: Park Ridge, state: Illinois, Lat: 42.0125, Lng: -87.8436, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottage Grove, Minnesota 44.8161 -92.9274 matched with DB +City: Cottage Grove, state: Minnesota, Lat: 44.8161, Lng: -92.9274, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cottage Grove, Minnesota 44.8161 -92.9274 matched with DB +City: Cottage Grove, state: Oregon, Lat: 43.796, Lng: -123.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bell Gardens, California 33.9663 -118.1550 matched with DB +City: Bell Gardens, state: California, Lat: 33.9663, Lng: -118.155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Gabriel, California 34.0949 -118.0990 matched with DB +City: San Gabriel, state: California, Lat: 34.0949, Lng: -118.099, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Ohio 41.2390 -80.8174 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Ohio 41.2390 -80.8174 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Ohio 41.2390 -80.8174 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Ohio 41.2390 -80.8174 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Ohio 41.2390 -80.8174 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Security-Widefield, Colorado 38.7489 -104.7142 matched with DB +City: Security-Widefield, state: Colorado, Lat: 38.7489, Lng: -104.7142, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grants Pass, Oregon 42.4333 -123.3317 matched with DB +City: Grants Pass, state: Oregon, Lat: 42.4333, Lng: -123.3317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keizer, Oregon 45.0028 -123.0243 matched with DB +City: Keizer, state: Oregon, Lat: 45.0028, Lng: -123.0243, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roy, Utah 41.1714 -112.0485 matched with DB +City: Roy, state: Utah, Lat: 41.1714, Lng: -112.0485, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bettendorf, Iowa 41.5657 -90.4765 matched with DB +City: Bettendorf, state: Iowa, Lat: 41.5657, Lng: -90.4765, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westerville, Ohio 40.1241 -82.9210 matched with DB +City: Westerville, state: Ohio, Lat: 40.1241, Lng: -82.921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Royal Palm Beach, Florida 26.7038 -80.2241 matched with DB +City: Royal Palm Beach, state: Florida, Lat: 26.7038, Lng: -80.2241, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apache Junction, Arizona 33.3985 -111.5350 matched with DB +City: Apache Junction, state: Arizona, Lat: 33.3985, Lng: -111.535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Navarre, Florida 30.4174 -86.8907 matched with DB +City: Navarre, state: Florida, Lat: 30.4174, Lng: -86.8907, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheeling, Illinois 42.1308 -87.9240 matched with DB +City: Wheeling, state: West Virginia, Lat: 40.0752, Lng: -80.6951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheeling, Illinois 42.1308 -87.9240 matched with DB +City: Wheeling, state: Illinois, Lat: 42.1308, Lng: -87.924, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Stevens, Washington 48.0024 -122.0953 matched with DB +City: Lake Stevens, state: Washington, Lat: 48.0024, Lng: -122.0953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rexburg, Idaho 43.8226 -111.7919 matched with DB +City: Rexburg, state: Idaho, Lat: 43.8226, Lng: -111.7919, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Illinois 40.1107 -88.1973 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Illinois 40.1107 -88.1973 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Illinois 40.1107 -88.1973 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosenberg, Texas 29.5456 -95.8223 matched with DB +City: Rosenberg, state: Texas, Lat: 29.5456, Lng: -95.8223, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Fargo, North Dakota 46.8573 -96.9057 matched with DB +City: West Fargo, state: North Dakota, Lat: 46.8573, Lng: -96.9057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Presa, California 32.7110 -117.0027 matched with DB +City: La Presa, state: California, Lat: 32.711, Lng: -117.0027, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Menomonee Falls, Wisconsin 43.1487 -88.1227 matched with DB +City: Menomonee Falls, state: Wisconsin, Lat: 43.1487, Lng: -88.1227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vestavia Hills, Alabama 33.4518 -86.7437 matched with DB +City: Vestavia Hills, state: Alabama, Lat: 33.4518, Lng: -86.7437, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calexico, California 32.6849 -115.4944 matched with DB +City: Calexico, state: California, Lat: 32.6849, Lng: -115.4944, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valrico, Florida 27.9193 -82.2293 matched with DB +City: Valrico, state: Florida, Lat: 27.9193, Lng: -82.2293, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Vergne, Tennessee 36.0200 -86.5586 matched with DB +City: La Vergne, state: Tennessee, Lat: 36.02, Lng: -86.5586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlantic City, New Jersey 39.3797 -74.4527 matched with DB +City: Atlantic City, state: New Jersey, Lat: 39.3797, Lng: -74.4527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clovis, New Mexico 34.4376 -103.1923 matched with DB +City: Clovis, state: California, Lat: 36.8278, Lng: -119.683, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clovis, New Mexico 34.4376 -103.1923 matched with DB +City: Clovis, state: New Mexico, Lat: 34.4376, Lng: -103.1923, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peachtree City, Georgia 33.3942 -84.5710 matched with DB +City: Peachtree City, state: Georgia, Lat: 33.3942, Lng: -84.571, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phenix City, Alabama 32.4585 -85.0253 matched with DB +City: Phenix City, state: Alabama, Lat: 32.4585, Lng: -85.0253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DeLand, Florida 29.0225 -81.2875 matched with DB +City: DeLand, state: Florida, Lat: 29.0225, Lng: -81.2875, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsville, Virginia 37.6263 -77.3561 matched with DB +City: Mechanicsville, state: Virginia, Lat: 37.6263, Lng: -77.3561, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, California 33.8003 -117.9935 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holyoke, Massachusetts 42.2125 -72.6411 matched with DB +City: Holyoke, state: Massachusetts, Lat: 42.2125, Lng: -72.6411, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winter Springs, Florida 28.6889 -81.2703 matched with DB +City: Winter Springs, state: Florida, Lat: 28.6889, Lng: -81.2703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Owasso, Oklahoma 36.2878 -95.8311 matched with DB +City: Owasso, state: Oklahoma, Lat: 36.2878, Lng: -95.8311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prattville, Alabama 32.4597 -86.4573 matched with DB +City: Prattville, state: Alabama, Lat: 32.4597, Lng: -86.4573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Point, Georgia 33.6696 -84.4701 matched with DB +City: East Point, state: Georgia, Lat: 33.6696, Lng: -84.4701, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pacifica, California 37.6113 -122.4782 matched with DB +City: Pacifica, state: California, Lat: 37.6113, Lng: -122.4782, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hot Springs, Arkansas 34.4892 -93.0501 matched with DB +City: Hot Springs, state: Arkansas, Lat: 34.4892, Lng: -93.0501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adelanto, California 34.5814 -117.4397 matched with DB +City: Adelanto, state: California, Lat: 34.5814, Lng: -117.4397, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Florida 25.5396 -80.3971 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Florida 25.5396 -80.3971 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Florida 25.5396 -80.3971 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northglenn, Colorado 39.9108 -104.9783 matched with DB +City: Northglenn, state: Colorado, Lat: 39.9108, Lng: -104.9783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tupelo, Mississippi 34.2692 -88.7318 matched with DB +City: Tupelo, state: Mississippi, Lat: 34.2692, Lng: -88.7318, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Quinta, California 33.6536 -116.2785 matched with DB +City: La Quinta, state: California, Lat: 33.6536, Lng: -116.2785, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmont, New York 40.7033 -73.7078 matched with DB +City: Elmont, state: New York, Lat: 40.7033, Lng: -73.7078, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission Bend, Texas 29.6948 -95.6658 matched with DB +City: Mission Bend, state: Texas, Lat: 29.6948, Lng: -95.6658, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montclair, California 34.0715 -117.6981 matched with DB +City: Montclair, state: Virginia, Lat: 38.6111, Lng: -77.34, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montclair, California 34.0715 -117.6981 matched with DB +City: Montclair, state: California, Lat: 34.0715, Lng: -117.6981, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montclair, California 34.0715 -117.6981 matched with DB +City: Montclair, state: New Jersey, Lat: 40.8253, Lng: -74.2111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Puente, California 34.0323 -117.9533 matched with DB +City: La Puente, state: California, Lat: 34.0323, Lng: -117.9533, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carpentersville, Illinois 42.1227 -88.2896 matched with DB +City: Carpentersville, state: Illinois, Lat: 42.1227, Lng: -88.2896, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun City, Arizona 33.6165 -112.2819 matched with DB +City: Sun City, state: Arizona, Lat: 33.6165, Lng: -112.2819, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage, Indiana 41.5856 -87.1797 matched with DB +City: Portage, state: Wisconsin, Lat: 43.5489, Lng: -89.4658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Indiana 41.5856 -87.1797 matched with DB +City: Portage, state: Michigan, Lat: 42.2, Lng: -85.5906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Indiana 41.5856 -87.1797 matched with DB +City: Portage, state: Indiana, Lat: 41.5856, Lng: -87.1797, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hilton Head Island, South Carolina 32.1896 -80.7499 matched with DB +City: Hilton Head Island, state: South Carolina, Lat: 32.1896, Lng: -80.7499, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riviera Beach, Florida 26.7813 -80.0741 matched with DB +City: Riviera Beach, state: Maryland, Lat: 39.1623, Lng: -76.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riviera Beach, Florida 26.7813 -80.0741 matched with DB +City: Riviera Beach, state: Florida, Lat: 26.7813, Lng: -80.0741, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monrovia, California 34.1650 -117.9921 matched with DB +City: Monrovia, state: California, Lat: 34.165, Lng: -117.9921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Foothill Farms, California 38.6867 -121.3475 matched with DB +City: Foothill Farms, state: California, Lat: 38.6867, Lng: -121.3475, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, Georgia 34.2662 -85.1863 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, Georgia 34.2662 -85.1863 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Valley, New Mexico 35.0093 -106.6819 matched with DB +City: South Valley, state: New Mexico, Lat: 35.0093, Lng: -106.6819, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Albany, Indiana 38.3090 -85.8234 matched with DB +City: New Albany, state: Indiana, Lat: 38.309, Lng: -85.8234, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Albany, Indiana 38.3090 -85.8234 matched with DB +City: New Albany, state: Ohio, Lat: 40.0809, Lng: -82.7848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, Maine 44.0915 -70.1681 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Maine 44.0915 -70.1681 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Maine 44.0915 -70.1681 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Nevada 36.1365 -115.1370 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Nevada 36.1365 -115.1370 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Nevada 36.1365 -115.1370 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Nevada 36.1365 -115.1370 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Nevada 36.1365 -115.1370 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Wisconsin 42.9619 -88.0052 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Wisconsin 42.9619 -88.0052 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Wisconsin 42.9619 -88.0052 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Kentucky 38.2247 -84.5487 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Kentucky 38.2247 -84.5487 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Kentucky 38.2247 -84.5487 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evans, Georgia 33.5619 -82.1351 matched with DB +City: Evans, state: Georgia, Lat: 33.5619, Lng: -82.1351, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evans, Georgia 33.5619 -82.1351 matched with DB +City: Evans, state: Colorado, Lat: 40.366, Lng: -104.739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evans, Georgia 33.5619 -82.1351 matched with DB +City: Evans, state: New York, Lat: 42.6528, Lng: -79.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Grove, Utah 40.3716 -111.7412 matched with DB +City: Pleasant Grove, state: Alabama, Lat: 33.494, Lng: -86.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Grove, Utah 40.3716 -111.7412 matched with DB +City: Pleasant Grove, state: Utah, Lat: 40.3716, Lng: -111.7412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oregon City, Oregon 45.3418 -122.5924 matched with DB +City: Oregon City, state: Oregon, Lat: 45.3418, Lng: -122.5924, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlesville, Oklahoma 36.7365 -95.9456 matched with DB +City: Bartlesville, state: Oklahoma, Lat: 36.7365, Lng: -95.9456, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Island, Illinois 41.4699 -90.5827 matched with DB +City: Rock Island, state: Illinois, Lat: 41.4699, Lng: -90.5827, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover Park, Illinois 41.9818 -88.1446 matched with DB +City: Hanover Park, state: Illinois, Lat: 41.9818, Lng: -88.1446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leavenworth, Kansas 39.3239 -94.9240 matched with DB +City: Leavenworth, state: Kansas, Lat: 39.3239, Lng: -94.924, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinez, California 37.9985 -122.1161 matched with DB +City: Martinez, state: Georgia, Lat: 33.5209, Lng: -82.0985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinez, California 37.9985 -122.1161 matched with DB +City: Martinez, state: California, Lat: 37.9985, Lng: -122.1161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greer, South Carolina 34.9330 -82.2313 matched with DB +City: Greer, state: South Carolina, Lat: 34.933, Lng: -82.2313, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tucker, Georgia 33.8436 -84.2024 matched with DB +City: Tucker, state: Georgia, Lat: 33.8436, Lng: -84.2024, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond West, Florida 25.6105 -80.4297 matched with DB +City: Richmond West, state: Florida, Lat: 25.6105, Lng: -80.4297, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muskogee, Oklahoma 35.7432 -95.3567 matched with DB +City: Muskogee, state: Oklahoma, Lat: 35.7432, Lng: -95.3567, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, California 34.1259 -117.7153 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, California 34.1259 -117.7153 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kearns, Utah 40.6519 -112.0095 matched with DB +City: Kearns, state: Utah, Lat: 40.6519, Lng: -112.0095, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Meadow, New York 40.7197 -73.5604 matched with DB +City: East Meadow, state: New York, Lat: 40.7197, Lng: -73.5604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildomar, California 33.6173 -117.2582 matched with DB +City: Wildomar, state: California, Lat: 33.6173, Lng: -117.2582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Minnesota 44.8763 -93.2829 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Minnesota 44.8763 -93.2829 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Estero, Florida 26.4276 -81.7951 matched with DB +City: Estero, state: Florida, Lat: 26.4276, Lng: -81.7951, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beloit, Wisconsin 42.5230 -89.0184 matched with DB +City: Beloit, state: Wisconsin, Lat: 42.523, Lng: -89.0184, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakton, Virginia 38.8887 -77.3016 matched with DB +City: Oakton, state: Virginia, Lat: 38.8887, Lng: -77.3016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central Islip, New York 40.7836 -73.1945 matched with DB +City: Central Islip, state: New York, Lat: 40.7836, Lng: -73.1945, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Wisconsin 42.8854 -88.0104 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upper Arlington, Ohio 40.0272 -83.0704 matched with DB +City: Upper Arlington, state: Ohio, Lat: 40.0272, Lng: -83.0704, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Copperas Cove, Texas 31.1192 -97.9140 matched with DB +City: Copperas Cove, state: Texas, Lat: 31.1192, Lng: -97.914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tooele, Utah 40.5393 -112.3082 matched with DB +City: Tooele, state: Utah, Lat: 40.5393, Lng: -112.3082, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Creek, Wisconsin 42.8803 -87.9009 matched with DB +City: Oak Creek, state: Wisconsin, Lat: 42.8803, Lng: -87.9009, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randallstown, Maryland 39.3723 -76.8024 matched with DB +City: Randallstown, state: Maryland, Lat: 39.3723, Lng: -76.8024, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrillville, Indiana 41.4728 -87.3196 matched with DB +City: Merrillville, state: Indiana, Lat: 41.4728, Lng: -87.3196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temple City, California 34.1022 -118.0579 matched with DB +City: Temple City, state: California, Lat: 34.1022, Lng: -118.0579, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollwood, Florida 28.0577 -82.5148 matched with DB +City: Carrollwood, state: Florida, Lat: 28.0577, Lng: -82.5148, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hilliard, Ohio 40.0353 -83.1578 matched with DB +City: Hilliard, state: Ohio, Lat: 40.0353, Lng: -83.1578, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunedin, Florida 28.0329 -82.7862 matched with DB +City: Dunedin, state: Florida, Lat: 28.0329, Lng: -82.7862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moorpark, California 34.2861 -118.8768 matched with DB +City: Moorpark, state: California, Lat: 34.2861, Lng: -118.8768, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, Minnesota 45.0155 -93.1545 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Minnesota 45.0155 -93.1545 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Minnesota 45.0155 -93.1545 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Egypt Lake-Leto, Florida 28.0177 -82.5062 matched with DB +City: Egypt Lake-Leto, state: Florida, Lat: 28.0177, Lng: -82.5062, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmers Branch, Texas 32.9272 -96.8804 matched with DB +City: Farmers Branch, state: Texas, Lat: 32.9272, Lng: -96.8804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Ohio 40.5973 -83.1227 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Ohio 40.5973 -83.1227 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Ohio 40.5973 -83.1227 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Ohio 40.5973 -83.1227 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Ohio 40.5973 -83.1227 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lauderdale Lakes, Florida 26.1682 -80.2017 matched with DB +City: Lauderdale Lakes, state: Florida, Lat: 26.1682, Lng: -80.2017, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chillum, Maryland 38.9666 -76.9791 matched with DB +City: Chillum, state: Maryland, Lat: 38.9666, Lng: -76.9791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orangevale, California 38.6881 -121.2209 matched with DB +City: Orangevale, state: California, Lat: 38.6881, Lng: -121.2209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Prairie, Wisconsin 43.1825 -89.2362 matched with DB +City: Sun Prairie, state: Wisconsin, Lat: 43.1825, Lng: -89.2362, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar City, Utah 37.6834 -113.0956 matched with DB +City: Cedar City, state: Utah, Lat: 37.6834, Lng: -113.0956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Porte, Texas 29.6689 -95.0484 matched with DB +City: La Porte, state: Texas, Lat: 29.6689, Lng: -95.0484, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Porte, Texas 29.6689 -95.0484 matched with DB +City: La Porte, state: Indiana, Lat: 41.6069, Lng: -86.7142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commack, New York 40.8435 -73.2833 matched with DB +City: Commack, state: New York, Lat: 40.8435, Lng: -73.2833, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norristown, Pennsylvania 40.1225 -75.3398 matched with DB +City: Norristown, state: Pennsylvania, Lat: 40.1225, Lng: -75.3398, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calumet City, Illinois 41.6134 -87.5505 matched with DB +City: Calumet City, state: Illinois, Lat: 41.6134, Lng: -87.5505, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Miami Heights, Florida 25.5886 -80.3862 matched with DB +City: South Miami Heights, state: Florida, Lat: 25.5886, Lng: -80.3862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Addison, Illinois 41.9313 -88.0085 matched with DB +City: Addison, state: Illinois, Lat: 41.9313, Lng: -88.0085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Addison, Illinois 41.9313 -88.0085 matched with DB +City: Addison, state: Texas, Lat: 32.959, Lng: -96.8355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inver Grove Heights, Minnesota 44.8247 -93.0596 matched with DB +City: Inver Grove Heights, state: Minnesota, Lat: 44.8247, Lng: -93.0596, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Mirage, Arizona 33.5905 -112.3271 matched with DB +City: El Mirage, state: Arizona, Lat: 33.5905, Lng: -112.3271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Indiana 39.8318 -84.8905 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Indiana 39.8318 -84.8905 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Indiana 39.8318 -84.8905 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Indiana 39.8318 -84.8905 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Indiana 39.8318 -84.8905 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midvale, Utah 40.6148 -111.8927 matched with DB +City: Midvale, state: Utah, Lat: 40.6148, Lng: -111.8927, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendall West, Florida 25.7065 -80.4388 matched with DB +City: Kendall West, state: Florida, Lat: 25.7065, Lng: -80.4388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lima, Ohio 40.7410 -84.1120 matched with DB +City: Lima, state: Ohio, Lat: 40.741, Lng: -84.112, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gahanna, Ohio 40.0251 -82.8637 matched with DB +City: Gahanna, state: Ohio, Lat: 40.0251, Lng: -82.8637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olney, Maryland 39.1465 -77.0715 matched with DB +City: Olney, state: Maryland, Lat: 39.1465, Lng: -77.0715, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Olney, Maryland 39.1465 -77.0715 matched with DB +City: Olney, state: Illinois, Lat: 38.7285, Lng: -88.0839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Torrington, Connecticut 41.8349 -73.1282 matched with DB +City: Torrington, state: Connecticut, Lat: 41.8349, Lng: -73.1282, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kaneohe, Hawaii 21.4062 -157.7904 matched with DB +City: Kaneohe, state: Hawaii, Lat: 21.4062, Lng: -157.7904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Ridgeville, Ohio 41.3852 -82.0195 matched with DB +City: North Ridgeville, state: Ohio, Lat: 41.3852, Lng: -82.0195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Juan, Texas 26.1903 -98.1520 matched with DB +City: San Juan, state: Texas, Lat: 26.1903, Lng: -98.152, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midlothian, Texas 32.4669 -96.9890 matched with DB +City: Midlothian, state: Illinois, Lat: 41.6254, Lng: -87.7243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Texas 32.4669 -96.9890 matched with DB +City: Midlothian, state: Texas, Lat: 32.4669, Lng: -96.989, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Texas 32.4669 -96.9890 matched with DB +City: Midlothian, state: Virginia, Lat: 37.4856, Lng: -77.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salisbury, North Carolina 35.6658 -80.4905 matched with DB +City: Salisbury, state: New York, Lat: 40.7454, Lng: -73.5604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, North Carolina 35.6658 -80.4905 matched with DB +City: Salisbury, state: Maryland, Lat: 38.3756, Lng: -75.5865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, North Carolina 35.6658 -80.4905 matched with DB +City: Salisbury, state: North Carolina, Lat: 35.6658, Lng: -80.4905, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, North Carolina 35.6658 -80.4905 matched with DB +City: Salisbury, state: Massachusetts, Lat: 42.8465, Lng: -70.8616, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, North Carolina 35.6658 -80.4905 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.038, Lng: -75.9961, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, North Carolina 35.6658 -80.4905 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.5768, Lng: -75.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Socorro, Texas 31.6383 -106.2601 matched with DB +City: Socorro, state: New Mexico, Lat: 34.0543, Lng: -106.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Socorro, Texas 31.6383 -106.2601 matched with DB +City: Socorro, state: Texas, Lat: 31.6383, Lng: -106.2601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fuquay-Varina, North Carolina 35.5953 -78.7778 matched with DB +City: Fuquay-Varina, state: North Carolina, Lat: 35.5953, Lng: -78.7778, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, Missouri 38.4479 -90.3199 matched with DB +City: Oakville, state: Connecticut, Lat: 41.5893, Lng: -73.0905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakville, Missouri 38.4479 -90.3199 matched with DB +City: Oakville, state: Missouri, Lat: 38.4479, Lng: -90.3199, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Hollywood, California 34.0883 -118.3719 matched with DB +City: West Hollywood, state: California, Lat: 34.0883, Lng: -118.3719, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westmont, California 33.9417 -118.3018 matched with DB +City: Westmont, state: Illinois, Lat: 41.7948, Lng: -87.9742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, California 33.9417 -118.3018 matched with DB +City: Westmont, state: California, Lat: 33.9417, Lng: -118.3018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, California 33.9417 -118.3018 matched with DB +City: Westmont, state: New Jersey, Lat: 39.9082, Lng: -75.0551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fruit Cove, Florida 30.0972 -81.6175 matched with DB +City: Fruit Cove, state: Florida, Lat: 30.0972, Lng: -81.6175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Arkansas 34.5776 -92.5713 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brunswick, Ohio 41.2465 -81.8198 matched with DB +City: Brunswick, state: Ohio, Lat: 41.2465, Lng: -81.8198, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Ohio 41.2465 -81.8198 matched with DB +City: Brunswick, state: Georgia, Lat: 31.1449, Lng: -81.4746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Ohio 41.2465 -81.8198 matched with DB +City: Brunswick, state: Maine, Lat: 43.9007, Lng: -69.9761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Ohio 41.2465 -81.8198 matched with DB +City: Brunswick, state: New York, Lat: 42.7558, Lng: -73.5903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Missouri 38.5800 -90.6698 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Missouri 38.5800 -90.6698 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglasville, Georgia 33.7384 -84.7054 matched with DB +City: Douglasville, state: Georgia, Lat: 33.7384, Lng: -84.7054, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springville, Utah 40.1638 -111.6205 matched with DB +City: Springville, state: Utah, Lat: 40.1638, Lng: -111.6205, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Luis, Arizona 32.4911 -114.7089 matched with DB +City: San Luis, state: Arizona, Lat: 32.4911, Lng: -114.7089, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown Town, Massachusetts 42.3700 -71.1774 matched with DB +City: Watertown Town, state: Massachusetts, Lat: 42.37, Lng: -71.1774, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Georgia 34.1026 -84.5091 matched with DB +City: Woodstock, state: Illinois, Lat: 42.3096, Lng: -88.4353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodstock, Georgia 34.1026 -84.5091 matched with DB +City: Woodstock, state: Georgia, Lat: 34.1026, Lng: -84.5091, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, Virginia 38.8653 -77.3586 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Virginia 38.8653 -77.3586 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Virginia 38.8653 -77.3586 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manhattan Beach, California 33.8894 -118.3967 matched with DB +City: Manhattan Beach, state: California, Lat: 33.8894, Lng: -118.3967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Juan Capistrano, California 33.5008 -117.6544 matched with DB +City: San Juan Capistrano, state: California, Lat: 33.5008, Lng: -117.6544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainfield, Indiana 39.6954 -86.3716 matched with DB +City: Plainfield, state: New Jersey, Lat: 40.6154, Lng: -74.4157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Indiana 39.6954 -86.3716 matched with DB +City: Plainfield, state: Indiana, Lat: 39.6954, Lng: -86.3716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Indiana 39.6954 -86.3716 matched with DB +City: Plainfield, state: Illinois, Lat: 41.6207, Lng: -88.2253, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Owings Mills, Maryland 39.4115 -76.7913 matched with DB +City: Owings Mills, state: Maryland, Lat: 39.4115, Lng: -76.7913, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, Mississippi 32.3846 -88.6896 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, Mississippi 32.3846 -88.6896 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cookeville, Tennessee 36.1482 -85.5109 matched with DB +City: Cookeville, state: Tennessee, Lat: 36.1482, Lng: -85.5109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northbrook, Illinois 42.1292 -87.8352 matched with DB +City: Northbrook, state: Illinois, Lat: 42.1292, Lng: -87.8352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Northbrook, Illinois 42.1292 -87.8352 matched with DB +City: Northbrook, state: Ohio, Lat: 39.2467, Lng: -84.5796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Lawn, New Jersey 40.9359 -74.1177 matched with DB +City: Fair Lawn, state: New Jersey, Lat: 40.9359, Lng: -74.1177, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, North Carolina 35.0063 -80.5596 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Kentucky 37.7307 -84.2925 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kentucky 37.7307 -84.2925 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kentucky 37.7307 -84.2925 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kentucky 37.7307 -84.2925 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kentucky 37.7307 -84.2925 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University City, Missouri 38.6657 -90.3315 matched with DB +City: University City, state: Missouri, Lat: 38.6657, Lng: -90.3315, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkland, Florida 26.3219 -80.2533 matched with DB +City: Parkland, state: Florida, Lat: 26.3219, Lng: -80.2533, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parkland, Florida 26.3219 -80.2533 matched with DB +City: Parkland, state: Washington, Lat: 47.1417, Lng: -122.4376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oswego, Illinois 41.6834 -88.3372 matched with DB +City: Oswego, state: New York, Lat: 43.4516, Lng: -76.5005, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oswego, Illinois 41.6834 -88.3372 matched with DB +City: Oswego, state: Illinois, Lat: 41.6834, Lng: -88.3372, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oildale, California 35.4293 -119.0306 matched with DB +City: Oildale, state: California, Lat: 35.4293, Lng: -119.0306, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Graham, Washington 47.0322 -122.2827 matched with DB +City: Graham, state: North Carolina, Lat: 36.0589, Lng: -79.3894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Washington 47.0322 -122.2827 matched with DB +City: Graham, state: Washington, Lat: 47.0322, Lng: -122.2827, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Washington 47.0322 -122.2827 matched with DB +City: Graham, state: Texas, Lat: 33.1017, Lng: -98.5779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, Ohio 39.3571 -84.3023 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery Village, Maryland 39.1788 -77.1954 matched with DB +City: Montgomery Village, state: Maryland, Lat: 39.1788, Lng: -77.1954, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, New York 40.5887 -73.6660 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, New York 40.5887 -73.6660 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, New York 40.5887 -73.6660 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hinesville, Georgia 31.8248 -81.6137 matched with DB +City: Hinesville, state: Georgia, Lat: 31.8248, Lng: -81.6137, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Glades, Florida 25.9129 -80.2013 matched with DB +City: Golden Glades, state: Florida, Lat: 25.9129, Lng: -80.2013, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Del Rio, Texas 29.3708 -100.8801 matched with DB +City: Del Rio, state: Texas, Lat: 29.3708, Lng: -100.8801, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Indiana 41.5743 -85.8309 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Indiana 41.5743 -85.8309 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Place, Washington 47.2147 -122.5461 matched with DB +City: University Place, state: Washington, Lat: 47.2147, Lng: -122.5461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butte, Montana 45.9020 -112.6571 matched with DB +City: Butte, state: Montana, Lat: 45.902, Lng: -112.6571, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington Station, New York 40.8446 -73.4050 matched with DB +City: Huntington Station, state: New York, Lat: 40.8446, Lng: -73.405, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, California 37.9539 -122.0759 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, California 37.9539 -122.0759 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, California 37.9539 -122.0759 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manitowoc, Wisconsin 44.0991 -87.6812 matched with DB +City: Manitowoc, state: Wisconsin, Lat: 44.0991, Lng: -87.6812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairborn, Ohio 39.8010 -84.0094 matched with DB +City: Fairborn, state: Ohio, Lat: 39.801, Lng: -84.0094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Dimas, California 34.1082 -117.8090 matched with DB +City: San Dimas, state: California, Lat: 34.1082, Lng: -117.809, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stow, Ohio 41.1765 -81.4344 matched with DB +City: Stow, state: Ohio, Lat: 41.1765, Lng: -81.4344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McMinnville, Oregon 45.2110 -123.1918 matched with DB +City: McMinnville, state: Tennessee, Lat: 35.6864, Lng: -85.7812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: McMinnville, Oregon 45.2110 -123.1918 matched with DB +City: McMinnville, state: Oregon, Lat: 45.211, Lng: -123.1918, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: College Park, Maryland 38.9960 -76.9337 matched with DB +City: College Park, state: Maryland, Lat: 38.996, Lng: -76.9337, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: College Park, Maryland 38.9960 -76.9337 matched with DB +City: College Park, state: Georgia, Lat: 33.6363, Lng: -84.464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kiryas Joel, New York 41.3411 -74.1667 matched with DB +City: Kiryas Joel, state: New York, Lat: 41.3411, Lng: -74.1667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood Ranch, Florida 27.4185 -82.3948 matched with DB +City: Lakewood Ranch, state: Florida, Lat: 27.4185, Lng: -82.3948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pueblo West, Colorado 38.3465 -104.7246 matched with DB +City: Pueblo West, state: Colorado, Lat: 38.3465, Lng: -104.7246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merritt Island, Florida 28.3139 -80.6708 matched with DB +City: Merritt Island, state: Florida, Lat: 28.3139, Lng: -80.6708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, Idaho 46.3934 -116.9933 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Idaho 46.3934 -116.9933 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Idaho 46.3934 -116.9933 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timberwood Park, Texas 29.6995 -98.4838 matched with DB +City: Timberwood Park, state: Texas, Lat: 29.6995, Lng: -98.4838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sahuarita, Arizona 31.9323 -110.9654 matched with DB +City: Sahuarita, state: Arizona, Lat: 31.9323, Lng: -110.9654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dakota Ridge, Colorado 39.6192 -105.1344 matched with DB +City: Dakota Ridge, state: Colorado, Lat: 39.6192, Lng: -105.1344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prairieville, Louisiana 30.3151 -90.9571 matched with DB +City: Prairieville, state: Louisiana, Lat: 30.3151, Lng: -90.9571, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redmond, Oregon 44.2612 -121.1810 matched with DB +City: Redmond, state: Washington, Lat: 47.6763, Lng: -122.1169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Redmond, Oregon 44.2612 -121.1810 matched with DB +City: Redmond, state: Oregon, Lat: 44.2612, Lng: -121.181, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lufkin, Texas 31.3217 -94.7277 matched with DB +City: Lufkin, state: Texas, Lat: 31.3217, Lng: -94.7277, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pikesville, Maryland 39.3893 -76.7020 matched with DB +City: Pikesville, state: Maryland, Lat: 39.3893, Lng: -76.702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastpointe, Michigan 42.4657 -82.9461 matched with DB +City: Eastpointe, state: Michigan, Lat: 42.4657, Lng: -82.9461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Texas 29.6898 -95.1151 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Texas 29.6898 -95.1151 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cooper City, Florida 26.0463 -80.2862 matched with DB +City: Cooper City, state: Florida, Lat: 26.0463, Lng: -80.2862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westlake, Ohio 41.4524 -81.9294 matched with DB +City: Westlake, state: Ohio, Lat: 41.4524, Lng: -81.9294, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodridge, Illinois 41.7370 -88.0409 matched with DB +City: Woodridge, state: Illinois, Lat: 41.737, Lng: -88.0409, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spanaway, Washington 47.0979 -122.4233 matched with DB +City: Spanaway, state: Washington, Lat: 47.0979, Lng: -122.4233, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valparaiso, Indiana 41.4783 -87.0506 matched with DB +City: Valparaiso, state: Indiana, Lat: 41.4783, Lng: -87.0506, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: American Fork, Utah 40.3783 -111.7953 matched with DB +City: American Fork, state: Utah, Lat: 40.3783, Lng: -111.7953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Colorado 40.4690 -104.9198 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Colorado 40.4690 -104.9198 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Colorado 40.4690 -104.9198 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gadsden, Alabama 34.0086 -86.0157 matched with DB +City: Gadsden, state: Alabama, Lat: 34.0086, Lng: -86.0157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walla Walla, Washington 46.0671 -118.3368 matched with DB +City: Walla Walla, state: Washington, Lat: 46.0671, Lng: -118.3368, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New City, New York 41.1542 -73.9912 matched with DB +City: New City, state: New York, Lat: 41.1542, Lng: -73.9912, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kearney, Nebraska 40.7011 -99.0833 matched with DB +City: Kearney, state: Nebraska, Lat: 40.7011, Lng: -99.0833, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kearney, Nebraska 40.7011 -99.0833 matched with DB +City: Kearney, state: Missouri, Lat: 39.355, Lng: -94.3599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leawood, Kansas 38.9075 -94.6258 matched with DB +City: Leawood, state: Kansas, Lat: 38.9075, Lng: -94.6258, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, New York 40.6511 -73.6075 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, New York 40.6511 -73.6075 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinez, Georgia 33.5209 -82.0985 matched with DB +City: Martinez, state: Georgia, Lat: 33.5209, Lng: -82.0985, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinez, Georgia 33.5209 -82.0985 matched with DB +City: Martinez, state: California, Lat: 37.9985, Lng: -122.1161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crown Point, Indiana 41.4143 -87.3457 matched with DB +City: Crown Point, state: Indiana, Lat: 41.4143, Lng: -87.3457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallbrook, California 33.3693 -117.2259 matched with DB +City: Fallbrook, state: California, Lat: 33.3693, Lng: -117.2259, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, Colorado 39.6468 -104.9942 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Colorado 39.6468 -104.9942 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Colorado 39.6468 -104.9942 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Colorado 39.6468 -104.9942 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Lake, Florida 28.1206 -82.6868 matched with DB +City: East Lake, state: Florida, Lat: 28.1206, Lng: -82.6868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goldsboro, North Carolina 35.3778 -77.9717 matched with DB +City: Goldsboro, state: North Carolina, Lat: 35.3778, Lng: -77.9717, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ken Caryl, Colorado 39.5770 -105.1144 matched with DB +City: Ken Caryl, state: Colorado, Lat: 39.577, Lng: -105.1144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Georgia 34.2467 -84.4897 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Georgia 34.2467 -84.4897 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Georgia 34.2467 -84.4897 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Georgia 34.2467 -84.4897 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Georgia 34.2467 -84.4897 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Georgia 34.2467 -84.4897 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Little River, Florida 25.8571 -80.2367 matched with DB +City: West Little River, state: Florida, Lat: 25.8571, Lng: -80.2367, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alabaster, Alabama 33.2198 -86.8225 matched with DB +City: Alabaster, state: Alabama, Lat: 33.2198, Lng: -86.8225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bell, California 33.9801 -118.1798 matched with DB +City: Bell, state: California, Lat: 33.9801, Lng: -118.1798, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennesaw, Georgia 34.0260 -84.6177 matched with DB +City: Kennesaw, state: Georgia, Lat: 34.026, Lng: -84.6177, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Riding, Virginia 38.9120 -77.5132 matched with DB +City: South Riding, state: Virginia, Lat: 38.912, Lng: -77.5132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Menlo Park, California 37.4685 -122.1673 matched with DB +City: Menlo Park, state: California, Lat: 37.4685, Lng: -122.1673, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buenaventura Lakes, Florida 28.3349 -81.3539 matched with DB +City: Buenaventura Lakes, state: Florida, Lat: 28.3349, Lng: -81.3539, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel Park, Pennsylvania 40.3238 -80.0364 matched with DB +City: Bethel Park, state: Pennsylvania, Lat: 40.3238, Lng: -80.0364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Virginia 37.2043 -77.3913 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood Heights, Utah 40.6137 -111.8144 matched with DB +City: Cottonwood Heights, state: Utah, Lat: 40.6137, Lng: -111.8144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Foster City, California 37.5553 -122.2659 matched with DB +City: Foster City, state: California, Lat: 37.5553, Lng: -122.2659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniondale, New York 40.7176 -73.5947 matched with DB +City: Uniondale, state: New York, Lat: 40.7176, Lng: -73.5947, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Statesboro, Georgia 32.4375 -81.7751 matched with DB +City: Statesboro, state: Georgia, Lat: 32.4375, Lng: -81.7751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gillette, Wyoming 44.2752 -105.4982 matched with DB +City: Gillette, state: Wyoming, Lat: 44.2752, Lng: -105.4982, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn Center, Minnesota 45.0681 -93.3162 matched with DB +City: Brooklyn Center, state: Minnesota, Lat: 45.0681, Lng: -93.3162, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Gatos, California 37.2304 -121.9562 matched with DB +City: Los Gatos, state: California, Lat: 37.2304, Lng: -121.9562, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale Heights, Illinois 41.9196 -88.0785 matched with DB +City: Glendale Heights, state: Illinois, Lat: 41.9196, Lng: -88.0785, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingman, Arizona 35.2170 -114.0105 matched with DB +City: Kingman, state: Arizona, Lat: 35.217, Lng: -114.0105, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Pennsylvania 39.8456 -75.3718 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Pennsylvania 39.8456 -75.3718 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harker Heights, Texas 31.0572 -97.6446 matched with DB +City: Harker Heights, state: Texas, Lat: 31.0572, Lng: -97.6446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dana Point, California 33.4733 -117.6967 matched with DB +City: Dana Point, state: California, Lat: 33.4733, Lng: -117.6967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, New York 41.1151 -74.0486 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, New York 41.1151 -74.0486 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, New York 41.1151 -74.0486 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, Utah 41.0859 -112.0698 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, Utah 41.0859 -112.0698 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Illinois 41.9193 -88.3109 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Illinois 41.9193 -88.3109 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, California 38.6504 -121.2496 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, California 38.6504 -121.2496 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, California 38.6504 -121.2496 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, Arkansas 34.8507 -92.2029 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, Arkansas 34.8507 -92.2029 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kaysville, Utah 41.0290 -111.9456 matched with DB +City: Kaysville, state: Utah, Lat: 41.029, Lng: -111.9456, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Des Moines, Washington 47.3914 -122.3156 matched with DB +City: Des Moines, state: Iowa, Lat: 41.5725, Lng: -93.6105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Des Moines, Washington 47.3914 -122.3156 matched with DB +City: Des Moines, state: Washington, Lat: 47.3914, Lng: -122.3156, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goleta, California 34.4361 -119.8594 matched with DB +City: Goleta, state: California, Lat: 34.4361, Lng: -119.8594, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cibolo, Texas 29.5634 -98.2115 matched with DB +City: Cibolo, state: Texas, Lat: 29.5634, Lng: -98.2115, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andover, Minnesota 45.2571 -93.3265 matched with DB +City: Andover, state: Minnesota, Lat: 45.2571, Lng: -93.3265, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Minnesota 45.2571 -93.3265 matched with DB +City: Andover, state: Kansas, Lat: 37.6873, Lng: -97.1352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Minnesota 45.2571 -93.3265 matched with DB +City: Andover, state: Massachusetts, Lat: 42.6466, Lng: -71.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, New Hampshire 43.2990 -70.9787 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, New Hampshire 43.2990 -70.9787 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, New Hampshire 43.2990 -70.9787 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, New Hampshire 43.2990 -70.9787 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena, Montana 46.5965 -112.0202 matched with DB +City: Helena, state: Alabama, Lat: 33.2837, Lng: -86.8791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Helena, Montana 46.5965 -112.0202 matched with DB +City: Helena, state: Montana, Lat: 46.5965, Lng: -112.0202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk Grove Village, Illinois 42.0064 -87.9921 matched with DB +City: Elk Grove Village, state: Illinois, Lat: 42.0064, Lng: -87.9921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, California 32.7317 -116.9766 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, California 32.7317 -116.9766 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, California 32.7317 -116.9766 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, New Jersey 40.8791 -74.1085 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferry Pass, Florida 30.5205 -87.1899 matched with DB +City: Ferry Pass, state: Florida, Lat: 30.5205, Lng: -87.1899, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savage, Minnesota 44.7545 -93.3632 matched with DB +City: Savage, state: Minnesota, Lat: 44.7545, Lng: -93.3632, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly Hills, California 34.0786 -118.4021 matched with DB +City: Beverly Hills, state: Michigan, Lat: 42.522, Lng: -83.2423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, California 34.0786 -118.4021 matched with DB +City: Beverly Hills, state: Florida, Lat: 28.9176, Lng: -82.4542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, California 34.0786 -118.4021 matched with DB +City: Beverly Hills, state: California, Lat: 34.0786, Lng: -118.4021, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Desert Hot Springs, California 33.9550 -116.5429 matched with DB +City: Desert Hot Springs, state: California, Lat: 33.955, Lng: -116.5429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearfield, Utah 41.1030 -112.0238 matched with DB +City: Clearfield, state: Utah, Lat: 41.103, Lng: -112.0238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheat Ridge, Colorado 39.7728 -105.1028 matched with DB +City: Wheat Ridge, state: Colorado, Lat: 39.7728, Lng: -105.1028, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Olmsted, Ohio 41.4149 -81.9190 matched with DB +City: North Olmsted, state: Ohio, Lat: 41.4149, Lng: -81.919, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Massillon, Ohio 40.7838 -81.5254 matched with DB +City: Massillon, state: Ohio, Lat: 40.7838, Lng: -81.5254, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weatherford, Texas 32.7536 -97.7723 matched with DB +City: Weatherford, state: Oklahoma, Lat: 35.538, Lng: -98.6853, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weatherford, Texas 32.7536 -97.7723 matched with DB +City: Weatherford, state: Texas, Lat: 32.7536, Lng: -97.7723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pasadena, Maryland 39.1552 -76.5537 matched with DB +City: Pasadena, state: Maryland, Lat: 39.1552, Lng: -76.5537, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pasadena, Maryland 39.1552 -76.5537 matched with DB +City: Pasadena, state: California, Lat: 34.1597, Lng: -118.139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pasadena, Maryland 39.1552 -76.5537 matched with DB +City: Pasadena, state: Texas, Lat: 29.6575, Lng: -95.1498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nacogdoches, Texas 31.6134 -94.6528 matched with DB +City: Nacogdoches, state: Texas, Lat: 31.6134, Lng: -94.6528, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Juneau, Alaska 58.4546 -134.1739 matched with DB +City: Juneau, state: Alaska, Lat: 58.4546, Lng: -134.1739, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: O'Fallon, Illinois 38.5974 -89.9148 matched with DB +City: O'Fallon, state: Missouri, Lat: 38.785, Lng: -90.7175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: O'Fallon, Illinois 38.5974 -89.9148 matched with DB +City: O'Fallon, state: Illinois, Lat: 38.5974, Lng: -89.9148, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pekin, Illinois 40.5678 -89.6251 matched with DB +City: Pekin, state: Illinois, Lat: 40.5678, Lng: -89.6251, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Kentucky 38.9899 -84.6471 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kentucky 38.9899 -84.6471 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kentucky 38.9899 -84.6471 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kentucky 38.9899 -84.6471 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kentucky 38.9899 -84.6471 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kentucky 38.9899 -84.6471 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canyon Lake, Texas 29.8761 -98.2611 matched with DB +City: Canyon Lake, state: Texas, Lat: 29.8761, Lng: -98.2611, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canyon Lake, Texas 29.8761 -98.2611 matched with DB +City: Canyon Lake, state: California, Lat: 33.6885, Lng: -117.2621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, New York 43.2260 -75.4909 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, New York 43.2260 -75.4909 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aiken, South Carolina 33.5303 -81.7271 matched with DB +City: Aiken, state: South Carolina, Lat: 33.5303, Lng: -81.7271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marrero, Louisiana 29.8871 -90.1126 matched with DB +City: Marrero, state: Louisiana, Lat: 29.8871, Lng: -90.1126, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pullman, Washington 46.7336 -117.1680 matched with DB +City: Pullman, state: Washington, Lat: 46.7336, Lng: -117.168, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Square, New York 40.7002 -73.6775 matched with DB +City: Franklin Square, state: New York, Lat: 40.7002, Lng: -73.6775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Branch, New Jersey 40.2965 -73.9915 matched with DB +City: Long Branch, state: New Jersey, Lat: 40.2965, Lng: -73.9915, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Pablo, California 37.9629 -122.3426 matched with DB +City: San Pablo, state: California, Lat: 37.9629, Lng: -122.3426, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centereach, New York 40.8681 -73.0821 matched with DB +City: Centereach, state: New York, Lat: 40.8681, Lng: -73.0821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maryville, Tennessee 35.7468 -83.9789 matched with DB +City: Maryville, state: Missouri, Lat: 40.3428, Lng: -94.8702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maryville, Tennessee 35.7468 -83.9789 matched with DB +City: Maryville, state: Tennessee, Lat: 35.7468, Lng: -83.9789, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleburne, Texas 32.3568 -97.4151 matched with DB +City: Cleburne, state: Texas, Lat: 32.3568, Lng: -97.4151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atwater, California 37.3529 -120.5959 matched with DB +City: Atwater, state: California, Lat: 37.3529, Lng: -120.5959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlsbad, New Mexico 32.4010 -104.2388 matched with DB +City: Carlsbad, state: California, Lat: 33.1246, Lng: -117.2834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carlsbad, New Mexico 32.4010 -104.2388 matched with DB +City: Carlsbad, state: New Mexico, Lat: 32.401, Lng: -104.2388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duluth, Georgia 34.0053 -84.1492 matched with DB +City: Duluth, state: Minnesota, Lat: 46.7756, Lng: -92.1393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Duluth, Georgia 34.0053 -84.1492 matched with DB +City: Duluth, state: Georgia, Lat: 34.0053, Lng: -84.1492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laramie, Wyoming 41.3099 -105.6085 matched with DB +City: Laramie, state: Wyoming, Lat: 41.3099, Lng: -105.6085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bangor, Maine 44.8323 -68.7906 matched with DB +City: Bangor, state: Maine, Lat: 44.8323, Lng: -68.7906, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dania Beach, Florida 26.0593 -80.1637 matched with DB +City: Dania Beach, state: Florida, Lat: 26.0593, Lng: -80.1637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garner, North Carolina 35.6936 -78.6181 matched with DB +City: Garner, state: North Carolina, Lat: 35.6936, Lng: -78.6181, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Bend, Wisconsin 43.4173 -88.1818 matched with DB +City: West Bend, state: Wisconsin, Lat: 43.4173, Lng: -88.1818, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naugatuck, Connecticut 41.4890 -73.0518 matched with DB +City: Naugatuck, state: Connecticut, Lat: 41.489, Lng: -73.0518, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mundelein, Illinois 42.2693 -88.0102 matched with DB +City: Mundelein, state: Illinois, Lat: 42.2693, Lng: -88.0102, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holladay, Utah 40.6600 -111.8226 matched with DB +City: Holladay, state: Utah, Lat: 40.66, Lng: -111.8226, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawndale, California 33.8884 -118.3531 matched with DB +City: Lawndale, state: California, Lat: 33.8884, Lng: -118.3531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Magdalene, Florida 28.0875 -82.4791 matched with DB +City: Lake Magdalene, state: Florida, Lat: 28.0875, Lng: -82.4791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, Tennessee 35.9639 -84.2938 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Tennessee 35.9639 -84.2938 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Tennessee 35.9639 -84.2938 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford Mill, Maryland 39.3444 -76.7668 matched with DB +City: Milford Mill, state: Maryland, Lat: 39.3444, Lng: -76.7668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prosper, Texas 33.2394 -96.8087 matched with DB +City: Prosper, state: Texas, Lat: 33.2394, Lng: -96.8087, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oceanside, New York 40.6328 -73.6364 matched with DB +City: Oceanside, state: New York, Lat: 40.6328, Lng: -73.6364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oceanside, New York 40.6328 -73.6364 matched with DB +City: Oceanside, state: California, Lat: 33.2247, Lng: -117.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cornelius, North Carolina 35.4724 -80.8813 matched with DB +City: Cornelius, state: North Carolina, Lat: 35.4724, Lng: -80.8813, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cornelius, North Carolina 35.4724 -80.8813 matched with DB +City: Cornelius, state: Oregon, Lat: 45.5188, Lng: -123.051, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shawnee, Oklahoma 35.3531 -96.9647 matched with DB +City: Shawnee, state: Kansas, Lat: 39.0158, Lng: -94.8076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shawnee, Oklahoma 35.3531 -96.9647 matched with DB +City: Shawnee, state: Oklahoma, Lat: 35.3531, Lng: -96.9647, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Bern, North Carolina 35.0955 -77.0723 matched with DB +City: New Bern, state: North Carolina, Lat: 35.0955, Lng: -77.0723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Opelika, Alabama 32.6612 -85.3769 matched with DB +City: Opelika, state: Alabama, Lat: 32.6612, Lng: -85.3769, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ithaca, New York 42.4442 -76.5032 matched with DB +City: Ithaca, state: New York, Lat: 42.4442, Lng: -76.5032, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nicholasville, Kentucky 37.8906 -84.5668 matched with DB +City: Nicholasville, state: Kentucky, Lat: 37.8906, Lng: -84.5668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redan, Georgia 33.7394 -84.1644 matched with DB +City: Redan, state: Georgia, Lat: 33.7394, Lng: -84.1644, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bel Air North, Maryland 39.5543 -76.3732 matched with DB +City: Bel Air North, state: Maryland, Lat: 39.5543, Lng: -76.3732, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Chester, New York 41.0051 -73.6680 matched with DB +City: Port Chester, state: New York, Lat: 41.0051, Lng: -73.668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Verne, California 34.1207 -117.7703 matched with DB +City: La Verne, state: California, Lat: 34.1207, Lng: -117.7703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: LaGrange, Georgia 33.0274 -85.0384 matched with DB +City: LaGrange, state: Georgia, Lat: 33.0274, Lng: -85.0384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laguna Hills, California 33.5918 -117.6991 matched with DB +City: Laguna Hills, state: California, Lat: 33.5918, Lng: -117.6991, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middle River, Maryland 39.3436 -76.4253 matched with DB +City: Middle River, state: Maryland, Lat: 39.3436, Lng: -76.4253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orcutt, California 34.8691 -120.4222 matched with DB +City: Orcutt, state: California, Lat: 34.8691, Lng: -120.4222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Altos, California 37.3684 -122.0965 matched with DB +City: Los Altos, state: California, Lat: 37.3684, Lng: -122.0965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Falls Church, Virginia 38.8648 -77.1878 matched with DB +City: West Falls Church, state: Virginia, Lat: 38.8648, Lng: -77.1878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Royalton, Ohio 41.3138 -81.7450 matched with DB +City: North Royalton, state: Ohio, Lat: 41.3138, Lng: -81.745, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Virginia 39.0052 -77.4050 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Virginia 39.0052 -77.4050 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Virginia 39.0052 -77.4050 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopkinsville, Kentucky 36.8381 -87.4775 matched with DB +City: Hopkinsville, state: Kentucky, Lat: 36.8381, Lng: -87.4775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Virginia 38.7810 -77.1839 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamogordo, New Mexico 32.8837 -105.9625 matched with DB +City: Alamogordo, state: New Mexico, Lat: 32.8837, Lng: -105.9625, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlingame, California 37.5859 -122.3667 matched with DB +City: Burlingame, state: California, Lat: 37.5859, Lng: -122.3667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, Oregon 45.5614 -122.8370 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, Oregon 45.5614 -122.8370 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Florida 30.1356 -81.7674 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Florida 30.1356 -81.7674 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Florida 30.1356 -81.7674 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ballwin, Missouri 38.5950 -90.5500 matched with DB +City: Ballwin, state: Missouri, Lat: 38.595, Lng: -90.55, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: SeaTac, Washington 47.4444 -122.2986 matched with DB +City: SeaTac, state: Washington, Lat: 47.4444, Lng: -122.2986, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Odessa, Texas 31.8389 -102.5003 matched with DB +City: West Odessa, state: Texas, Lat: 31.8389, Lng: -102.5003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Chicago, Illinois 42.3172 -87.8595 matched with DB +City: North Chicago, state: Illinois, Lat: 42.3172, Lng: -87.8595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, New Jersey 40.6516 -74.3432 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, New Jersey 40.6516 -74.3432 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, New Jersey 40.6516 -74.3432 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zionsville, Indiana 39.9897 -86.3182 matched with DB +City: Zionsville, state: Indiana, Lat: 39.9897, Lng: -86.3182, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Paula, California 34.3545 -119.0656 matched with DB +City: Santa Paula, state: California, Lat: 34.3545, Lng: -119.0656, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southlake, Texas 32.9545 -97.1503 matched with DB +City: Southlake, state: Texas, Lat: 32.9545, Lng: -97.1503, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga, California 37.2684 -122.0263 matched with DB +City: Saratoga, state: California, Lat: 37.2684, Lng: -122.0263, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northport, Alabama 33.2586 -87.5993 matched with DB +City: Northport, state: Alabama, Lat: 33.2586, Lng: -87.5993, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Delaware 39.6776 -75.7576 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Delaware 39.6776 -75.7576 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Delaware 39.6776 -75.7576 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Delaware 39.6776 -75.7576 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Delaware 39.6776 -75.7576 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niles, Illinois 42.0278 -87.8099 matched with DB +City: Niles, state: Michigan, Lat: 41.8346, Lng: -86.2473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Illinois 42.0278 -87.8099 matched with DB +City: Niles, state: Ohio, Lat: 41.1879, Lng: -80.7531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Illinois 42.0278 -87.8099 matched with DB +City: Niles, state: Illinois, Lat: 42.0278, Lng: -87.8099, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Idaho 43.7223 -116.3866 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gurnee, Illinois 42.3708 -87.9392 matched with DB +City: Gurnee, state: Illinois, Lat: 42.3708, Lng: -87.9392, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami Lakes, Florida 25.9125 -80.3214 matched with DB +City: Miami Lakes, state: Florida, Lat: 25.9125, Lng: -80.3214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay Shore, New York 40.7288 -73.2495 matched with DB +City: Bay Shore, state: New York, Lat: 40.7288, Lng: -73.2495, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkville, Maryland 39.3832 -76.5519 matched with DB +City: Parkville, state: Maryland, Lat: 39.3832, Lng: -76.5519, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Carlos, California 37.4982 -122.2677 matched with DB +City: San Carlos, state: California, Lat: 37.4982, Lng: -122.2677, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Tonawanda, New York 43.0457 -78.8659 matched with DB +City: North Tonawanda, state: New York, Lat: 43.0457, Lng: -78.8659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceville, Georgia 33.9523 -83.9932 matched with DB +City: Lawrenceville, state: Georgia, Lat: 33.9523, Lng: -83.9932, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, New Jersey 40.3562 -74.6693 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, New Jersey 40.3562 -74.6693 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, New Jersey 40.3562 -74.6693 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Smyrna Beach, Florida 29.0249 -80.9652 matched with DB +City: New Smyrna Beach, state: Florida, Lat: 29.0249, Lng: -80.9652, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erie, Colorado 40.0404 -105.0399 matched with DB +City: Erie, state: Pennsylvania, Lat: 42.1167, Lng: -80.0733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Erie, Colorado 40.0404 -105.0399 matched with DB +City: Erie, state: Colorado, Lat: 40.0404, Lng: -105.0399, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austintown, Ohio 41.0932 -80.7405 matched with DB +City: Austintown, state: Ohio, Lat: 41.0932, Lng: -80.7405, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, North Carolina 35.4875 -79.1770 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, North Carolina 35.4875 -79.1770 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, North Carolina 35.4875 -79.1770 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eldersburg, Maryland 39.4041 -76.9528 matched with DB +City: Eldersburg, state: Maryland, Lat: 39.4041, Lng: -76.9528, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seguin, Texas 29.5891 -97.9676 matched with DB +City: Seguin, state: Texas, Lat: 29.5891, Lng: -97.9676, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Missouri 39.2394 -94.4191 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Missouri 39.2394 -94.4191 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bella Vista, Arkansas 36.4667 -94.2707 matched with DB +City: Bella Vista, state: Arkansas, Lat: 36.4667, Lng: -94.2707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Drexel Heights, Arizona 32.1453 -111.0480 matched with DB +City: Drexel Heights, state: Arizona, Lat: 32.1453, Lng: -111.048, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Park, Illinois 42.1823 -87.8104 matched with DB +City: Highland Park, state: New Jersey, Lat: 40.5006, Lng: -74.4283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Illinois 42.1823 -87.8104 matched with DB +City: Highland Park, state: Michigan, Lat: 42.4052, Lng: -83.0977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Illinois 42.1823 -87.8104 matched with DB +City: Highland Park, state: Illinois, Lat: 42.1823, Lng: -87.8104, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Illinois 42.1823 -87.8104 matched with DB +City: Highland Park, state: Texas, Lat: 32.8311, Lng: -96.8012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, New York 41.4459 -74.4236 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Ohio 41.3776 -83.6495 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Ohio 41.3776 -83.6495 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granger, Indiana 41.7374 -86.1348 matched with DB +City: Granger, state: Indiana, Lat: 41.7374, Lng: -86.1348, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey, California 36.5919 -121.8808 matched with DB +City: Monterey, state: California, Lat: 36.5919, Lng: -121.8808, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winter Park, Florida 28.5989 -81.3442 matched with DB +City: Winter Park, state: Florida, Lat: 28.5989, Lng: -81.3442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Niles, California 35.3683 -118.9225 matched with DB +City: East Niles, state: California, Lat: 35.3683, Lng: -118.9225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chamblee, Georgia 33.8842 -84.3007 matched with DB +City: Chamblee, state: Georgia, Lat: 33.8842, Lng: -84.3007, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vero Beach South, Florida 27.6132 -80.4163 matched with DB +City: Vero Beach South, state: Florida, Lat: 27.6132, Lng: -80.4163, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southgate, Michigan 42.2047 -83.2057 matched with DB +City: Southgate, state: Michigan, Lat: 42.2047, Lng: -83.2057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Banning, California 33.9460 -116.8992 matched with DB +City: Banning, state: California, Lat: 33.946, Lng: -116.8992, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galesburg, Illinois 40.9506 -90.3763 matched with DB +City: Galesburg, state: Illinois, Lat: 40.9506, Lng: -90.3763, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Algonquin, Illinois 42.1629 -88.3159 matched with DB +City: Algonquin, state: Illinois, Lat: 42.1629, Lng: -88.3159, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gloucester, Massachusetts 42.6260 -70.6897 matched with DB +City: Gloucester, state: Massachusetts, Lat: 42.626, Lng: -70.6897, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gloucester, Massachusetts 42.6260 -70.6897 matched with DB +City: Gloucester, state: New Jersey, Lat: 39.7924, Lng: -75.0363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fitchburg, Wisconsin 42.9859 -89.4255 matched with DB +City: Fitchburg, state: Massachusetts, Lat: 42.5912, Lng: -71.8156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fitchburg, Wisconsin 42.9859 -89.4255 matched with DB +City: Fitchburg, state: Wisconsin, Lat: 42.9859, Lng: -89.4255, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fleming Island, Florida 30.0988 -81.7124 matched with DB +City: Fleming Island, state: Florida, Lat: 30.0988, Lng: -81.7124, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raytown, Missouri 38.9944 -94.4641 matched with DB +City: Raytown, state: Missouri, Lat: 38.9944, Lng: -94.4641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Lorenzo, California 37.6733 -122.1332 matched with DB +City: San Lorenzo, state: California, Lat: 37.6733, Lng: -122.1332, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atascadero, California 35.4827 -120.6858 matched with DB +City: Atascadero, state: California, Lat: 35.4827, Lng: -120.6858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morrisville, North Carolina 35.8368 -78.8348 matched with DB +City: Morrisville, state: Pennsylvania, Lat: 40.2074, Lng: -74.78, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morrisville, North Carolina 35.8368 -78.8348 matched with DB +City: Morrisville, state: North Carolina, Lat: 35.8368, Lng: -78.8348, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fridley, Minnesota 45.0841 -93.2595 matched with DB +City: Fridley, state: Minnesota, Lat: 45.0841, Lng: -93.2595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerlin South, Nevada 36.1242 -115.3324 matched with DB +City: Summerlin South, state: Nevada, Lat: 36.1242, Lng: -115.3324, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paragould, Arkansas 36.0555 -90.5149 matched with DB +City: Paragould, state: Arkansas, Lat: 36.0555, Lng: -90.5149, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazleton, Pennsylvania 40.9505 -75.9725 matched with DB +City: Hazleton, state: Pennsylvania, Lat: 40.9505, Lng: -75.9725, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rahway, New Jersey 40.6077 -74.2807 matched with DB +City: Rahway, state: New Jersey, Lat: 40.6077, Lng: -74.2807, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lathrop, California 37.8090 -121.3131 matched with DB +City: Lathrop, state: California, Lat: 37.809, Lng: -121.3131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matthews, North Carolina 35.1195 -80.7101 matched with DB +City: Matthews, state: North Carolina, Lat: 35.1195, Lng: -80.7101, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Maryland 39.0949 -76.8622 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Maryland 39.0949 -76.8622 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Maryland 39.0949 -76.8622 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Maryland 39.0949 -76.8622 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Schererville, Indiana 41.4861 -87.4442 matched with DB +City: Schererville, state: Indiana, Lat: 41.4861, Lng: -87.4442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobart, Indiana 41.5140 -87.2729 matched with DB +City: Hobart, state: Indiana, Lat: 41.514, Lng: -87.2729, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hobart, Indiana 41.5140 -87.2729 matched with DB +City: Hobart, state: Wisconsin, Lat: 44.4967, Lng: -88.1602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burton, Michigan 42.9974 -83.6175 matched with DB +City: Burton, state: Michigan, Lat: 42.9974, Lng: -83.6175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastern Goleta Valley, California 34.4448 -119.7879 matched with DB +City: Eastern Goleta Valley, state: California, Lat: 34.4448, Lng: -119.7879, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Palo Alto, California 37.4671 -122.1352 matched with DB +City: East Palo Alto, state: California, Lat: 37.4671, Lng: -122.1352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central, Louisiana 30.5593 -91.0369 matched with DB +City: Central, state: Louisiana, Lat: 30.5593, Lng: -91.0369, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hutto, Texas 30.5396 -97.5440 matched with DB +City: Hutto, state: Texas, Lat: 30.5396, Lng: -97.544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain, Colorado 38.6886 -104.6829 matched with DB +City: Fountain, state: Colorado, Lat: 38.6886, Lng: -104.6829, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield Heights, Ohio 41.4199 -81.6038 matched with DB +City: Garfield Heights, state: Ohio, Lat: 41.4199, Lng: -81.6038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Park, Michigan 42.4649 -83.1824 matched with DB +City: Oak Park, state: Michigan, Lat: 42.4649, Lng: -83.1824, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, Michigan 42.4649 -83.1824 matched with DB +City: Oak Park, state: Illinois, Lat: 41.8872, Lng: -87.7899, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, Michigan 42.4649 -83.1824 matched with DB +City: Oak Park, state: California, Lat: 34.185, Lng: -118.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Mississippi 33.3850 -91.0514 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, Massachusetts 42.4556 -71.0590 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Texarkana, Arkansas 33.4360 -93.9959 matched with DB +City: Texarkana, state: Arkansas, Lat: 33.436, Lng: -93.9959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Texarkana, Arkansas 33.4360 -93.9959 matched with DB +City: Texarkana, state: Texas, Lat: 33.45, Lng: -94.0847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Gate, Florida 26.1844 -81.7031 matched with DB +City: Golden Gate, state: Florida, Lat: 26.1844, Lng: -81.7031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsburg, Indiana 39.8337 -86.3830 matched with DB +City: Brownsburg, state: Indiana, Lat: 39.8337, Lng: -86.383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluffton, South Carolina 32.2135 -80.9316 matched with DB +City: Bluffton, state: Indiana, Lat: 40.7424, Lng: -85.173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bluffton, South Carolina 32.2135 -80.9316 matched with DB +City: Bluffton, state: South Carolina, Lat: 32.2135, Lng: -80.9316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crofton, Maryland 39.0144 -76.6800 matched with DB +City: Crofton, state: Maryland, Lat: 39.0144, Lng: -76.68, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carney, Maryland 39.4050 -76.5235 matched with DB +City: Carney, state: Maryland, Lat: 39.405, Lng: -76.5235, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Suisun City, California 38.2473 -122.0091 matched with DB +City: Suisun City, state: California, Lat: 38.2473, Lng: -122.0091, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, South Carolina 34.5211 -82.6478 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, South Carolina 34.5211 -82.6478 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, South Carolina 34.5211 -82.6478 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Arkansas 34.8807 -92.1304 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Arkansas 34.8807 -92.1304 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Arkansas 34.8807 -92.1304 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Arkansas 34.8807 -92.1304 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Arkansas 34.8807 -92.1304 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Arkansas 34.8807 -92.1304 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkwood, Missouri 38.5788 -90.4203 matched with DB +City: Kirkwood, state: Missouri, Lat: 38.5788, Lng: -90.4203, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun City Center, Florida 27.7150 -82.3569 matched with DB +City: Sun City Center, state: Florida, Lat: 27.715, Lng: -82.3569, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magna, Utah 40.7634 -112.1599 matched with DB +City: Magna, state: Utah, Lat: 40.7634, Lng: -112.1599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakleaf Plantation, Florida 30.1689 -81.8337 matched with DB +City: Oakleaf Plantation, state: Florida, Lat: 30.1689, Lng: -81.8337, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry Hall, Maryland 39.4068 -76.4780 matched with DB +City: Perry Hall, state: Maryland, Lat: 39.4068, Lng: -76.478, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Lake-Orient Park, Florida 27.9970 -82.3653 matched with DB +City: East Lake-Orient Park, state: Florida, Lat: 27.997, Lng: -82.3653, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Drexel Hill, Pennsylvania 39.9495 -75.3038 matched with DB +City: Drexel Hill, state: Pennsylvania, Lat: 39.9495, Lng: -75.3038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orchards, Washington 45.6890 -122.5306 matched with DB +City: Orchards, state: Washington, Lat: 45.689, Lng: -122.5306, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Utah 37.1303 -113.4878 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shaker Heights, Ohio 41.4744 -81.5496 matched with DB +City: Shaker Heights, state: Ohio, Lat: 41.4744, Lng: -81.5496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McDonough, Georgia 33.4397 -84.1505 matched with DB +City: McDonough, state: Georgia, Lat: 33.4397, Lng: -84.1505, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burbank, Illinois 41.7444 -87.7686 matched with DB +City: Burbank, state: Illinois, Lat: 41.7444, Lng: -87.7686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burbank, Illinois 41.7444 -87.7686 matched with DB +City: Burbank, state: California, Lat: 34.1879, Lng: -118.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, New Jersey 40.8917 -73.9736 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, New Jersey 40.8917 -73.9736 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, New Jersey 40.8917 -73.9736 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, New Jersey 40.8917 -73.9736 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Illinois 40.1426 -87.6111 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Illinois 40.1426 -87.6111 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Illinois 40.1426 -87.6111 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Illinois 40.1426 -87.6111 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Illinois 40.1426 -87.6111 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Casselberry, Florida 28.6624 -81.3217 matched with DB +City: Casselberry, state: Florida, Lat: 28.6624, Lng: -81.3217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mehlville, Missouri 38.5018 -90.3149 matched with DB +City: Mehlville, state: Missouri, Lat: 38.5018, Lng: -90.3149, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake in the Hills, Illinois 42.1913 -88.3477 matched with DB +City: Lake in the Hills, state: Illinois, Lat: 42.1913, Lng: -88.3477, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laplace, Louisiana 30.0731 -90.4758 matched with DB +City: Laplace, state: Louisiana, Lat: 30.0731, Lng: -90.4758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Arkansas 35.2762 -93.1383 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Arkansas 35.2762 -93.1383 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Texas 33.1116 -96.1099 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haines City, Florida 28.1102 -81.6157 matched with DB +City: Haines City, state: Florida, Lat: 28.1102, Lng: -81.6157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Pennsylvania 40.6858 -75.2209 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Pennsylvania 40.6858 -75.2209 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Pennsylvania 40.6858 -75.2209 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ruskin, Florida 27.7065 -82.4209 matched with DB +City: Ruskin, state: Florida, Lat: 27.7065, Lng: -82.4209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockbridge, Georgia 33.5254 -84.2295 matched with DB +City: Stockbridge, state: Georgia, Lat: 33.5254, Lng: -84.2295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersontown, Kentucky 38.2049 -85.5701 matched with DB +City: Jeffersontown, state: Kentucky, Lat: 38.2049, Lng: -85.5701, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bixby, Oklahoma 35.9454 -95.8776 matched with DB +City: Bixby, state: Oklahoma, Lat: 35.9454, Lng: -95.8776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Kentucky 38.9510 -84.5492 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Kentucky 38.9510 -84.5492 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Kentucky 38.9510 -84.5492 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Kentucky 38.9510 -84.5492 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, New York 41.0236 -73.7193 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New York 41.0236 -73.7193 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New York 41.0236 -73.7193 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New York 41.0236 -73.7193 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New York 41.0236 -73.7193 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New York 41.0236 -73.7193 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, Illinois 41.5648 -87.5462 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Illinois 41.5648 -87.5462 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Illinois 41.5648 -87.5462 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Illinois 41.5648 -87.5462 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, New York 42.0976 -79.2367 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, New York 42.0976 -79.2367 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Statesville, North Carolina 35.7842 -80.8713 matched with DB +City: Statesville, state: North Carolina, Lat: 35.7842, Lng: -80.8713, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison Heights, Michigan 42.5073 -83.1034 matched with DB +City: Madison Heights, state: Michigan, Lat: 42.5073, Lng: -83.1034, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison Heights, Michigan 42.5073 -83.1034 matched with DB +City: Madison Heights, state: Virginia, Lat: 37.4487, Lng: -79.1057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroeville, Pennsylvania 40.4262 -79.7605 matched with DB +City: Monroeville, state: Pennsylvania, Lat: 40.4262, Lng: -79.7605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Alabama 31.3275 -85.8463 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Alabama 31.3275 -85.8463 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, Kentucky 38.1924 -84.8643 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Kentucky 38.1924 -84.8643 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Kentucky 38.1924 -84.8643 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Laurel, Maryland 39.0603 -76.8456 matched with DB +City: South Laurel, state: Maryland, Lat: 39.0603, Lng: -76.8456, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hills, Michigan 42.9577 -85.4895 matched with DB +City: Forest Hills, state: Michigan, Lat: 42.9577, Lng: -85.4895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Short Pump, Virginia 37.6549 -77.6201 matched with DB +City: Short Pump, state: Virginia, Lat: 37.6549, Lng: -77.6201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen Park, Michigan 42.2595 -83.2107 matched with DB +City: Allen Park, state: Michigan, Lat: 42.2595, Lng: -83.2107, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, South Dakota 45.4649 -98.4686 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, South Dakota 45.4649 -98.4686 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, South Dakota 45.4649 -98.4686 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, South Dakota 45.4649 -98.4686 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, South Dakota 45.4649 -98.4686 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Iberia, Louisiana 30.0049 -91.8202 matched with DB +City: New Iberia, state: Louisiana, Lat: 30.0049, Lng: -91.8202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, Maryland 39.2246 -77.2659 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, Maryland 39.2246 -77.2659 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Ellyn, Illinois 41.8666 -88.0629 matched with DB +City: Glen Ellyn, state: Illinois, Lat: 41.8666, Lng: -88.0629, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monsey, New York 41.1181 -74.0682 matched with DB +City: Monsey, state: New York, Lat: 41.1181, Lng: -74.0682, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northampton, Massachusetts 42.3266 -72.6745 matched with DB +City: Northampton, state: Massachusetts, Lat: 42.3266, Lng: -72.6745, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Northampton, Massachusetts 42.3266 -72.6745 matched with DB +City: Northampton, state: Pennsylvania, Lat: 40.6866, Lng: -75.4904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Northampton, Massachusetts 42.3266 -72.6745 matched with DB +City: Northampton, state: Pennsylvania, Lat: 40.2104, Lng: -75.0014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temescal Valley, California 33.7581 -117.4677 matched with DB +City: Temescal Valley, state: California, Lat: 33.7581, Lng: -117.4677, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bergenfield, New Jersey 40.9236 -73.9982 matched with DB +City: Bergenfield, state: New Jersey, Lat: 40.9236, Lng: -73.9982, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut, California 34.0334 -117.8593 matched with DB +City: Walnut, state: California, Lat: 34.0334, Lng: -117.8593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle Pass, Texas 28.7125 -100.4840 matched with DB +City: Eagle Pass, state: Texas, Lat: 28.7125, Lng: -100.484, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Kentucky 37.8397 -87.5798 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Kentucky 37.8397 -87.5798 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Kentucky 37.8397 -87.5798 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Kentucky 37.8397 -87.5798 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Cove, New York 40.8709 -73.6287 matched with DB +City: Glen Cove, state: New York, Lat: 40.8709, Lng: -73.6287, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgecrest, California 35.6308 -117.6622 matched with DB +City: Ridgecrest, state: California, Lat: 35.6308, Lng: -117.6622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maryland Heights, Missouri 38.7189 -90.4749 matched with DB +City: Maryland Heights, state: Missouri, Lat: 38.7189, Lng: -90.4749, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Converse, Texas 29.5091 -98.3084 matched with DB +City: Converse, state: Texas, Lat: 29.5091, Lng: -98.3084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Minnesota 44.9876 -92.9641 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Minnesota 44.9876 -92.9641 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Twentynine Palms, California 34.1478 -116.0659 matched with DB +City: Twentynine Palms, state: California, Lat: 34.1478, Lng: -116.0659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Jackson, Texas 29.0516 -95.4521 matched with DB +City: Lake Jackson, state: Texas, Lat: 29.0516, Lng: -95.4521, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Kansas 37.9753 -100.8527 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Kansas 37.9753 -100.8527 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Kansas 37.9753 -100.8527 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Kansas 37.9753 -100.8527 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Kansas 37.9753 -100.8527 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Kansas 37.9753 -100.8527 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maple Valley, Washington 47.3659 -122.0368 matched with DB +City: Maple Valley, state: Washington, Lat: 47.3659, Lng: -122.0368, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Daphne, Alabama 30.6263 -87.8816 matched with DB +City: Daphne, state: Alabama, Lat: 30.6263, Lng: -87.8816, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamtramck, Michigan 42.3954 -83.0559 matched with DB +City: Hamtramck, state: Michigan, Lat: 42.3954, Lng: -83.0559, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sachse, Texas 32.9726 -96.5793 matched with DB +City: Sachse, state: Texas, Lat: 32.9726, Lng: -96.5793, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, California 37.5154 -122.2953 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, California 37.5154 -122.2953 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, California 37.5154 -122.2953 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, California 37.5154 -122.2953 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockledge, Florida 28.3203 -80.7360 matched with DB +City: Rockledge, state: Florida, Lat: 28.3203, Lng: -80.736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tualatin, Oregon 45.3772 -122.7748 matched with DB +City: Tualatin, state: Oregon, Lat: 45.3772, Lng: -122.7748, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmette, Illinois 42.0771 -87.7282 matched with DB +City: Wilmette, state: Illinois, Lat: 42.0771, Lng: -87.7282, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williston, North Dakota 48.1814 -103.6364 matched with DB +City: Williston, state: North Dakota, Lat: 48.1814, Lng: -103.6364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Williston, North Dakota 48.1814 -103.6364 matched with DB +City: Williston, state: Vermont, Lat: 44.4345, Lng: -73.0888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramsey, Minnesota 45.2617 -93.4494 matched with DB +City: Ramsey, state: New Jersey, Lat: 41.0595, Lng: -74.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ramsey, Minnesota 45.2617 -93.4494 matched with DB +City: Ramsey, state: Minnesota, Lat: 45.2617, Lng: -93.4494, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chaska, Minnesota 44.8164 -93.6091 matched with DB +City: Chaska, state: Minnesota, Lat: 44.8164, Lng: -93.6091, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsport, Pennsylvania 41.2399 -77.0370 matched with DB +City: Williamsport, state: Pennsylvania, Lat: 41.2399, Lng: -77.037, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Immokalee, Florida 26.4253 -81.4251 matched with DB +City: Immokalee, state: Florida, Lat: 26.4253, Lng: -81.4251, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dodge City, Kansas 37.7611 -100.0182 matched with DB +City: Dodge City, state: Kansas, Lat: 37.7611, Lng: -100.0182, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Mississippi 32.3540 -90.3403 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntley, Illinois 42.1599 -88.4330 matched with DB +City: Huntley, state: Illinois, Lat: 42.1599, Lng: -88.433, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Wisconsin 42.7129 -87.8876 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Wisconsin 42.7129 -87.8876 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Wisconsin 42.7129 -87.8876 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Wisconsin 42.7129 -87.8876 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Wisconsin 42.7129 -87.8876 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Wisconsin 42.7129 -87.8876 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tysons, Virginia 38.9215 -77.2273 matched with DB +City: Tysons, state: Virginia, Lat: 38.9215, Lng: -77.2273, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reisterstown, Maryland 39.4550 -76.8140 matched with DB +City: Reisterstown, state: Maryland, Lat: 39.455, Lng: -76.814, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prior Lake, Minnesota 44.7246 -93.4419 matched with DB +City: Prior Lake, state: Minnesota, Lat: 44.7246, Lng: -93.4419, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Connecticut 41.3502 -72.1022 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Mississippi 32.4738 -90.1300 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Mississippi 32.4738 -90.1300 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Mississippi 32.4738 -90.1300 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Mississippi 32.4738 -90.1300 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Mississippi 32.4738 -90.1300 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homewood, Alabama 33.4619 -86.8090 matched with DB +City: Homewood, state: Illinois, Lat: 41.5591, Lng: -87.661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Homewood, Alabama 33.4619 -86.8090 matched with DB +City: Homewood, state: Alabama, Lat: 33.4619, Lng: -86.809, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fortuna Foothills, Arizona 32.6616 -114.3974 matched with DB +City: Fortuna Foothills, state: Arizona, Lat: 32.6616, Lng: -114.3974, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Indiana 40.5497 -85.6604 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 40.5497 -85.6604 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 40.5497 -85.6604 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 40.5497 -85.6604 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 40.5497 -85.6604 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, New Jersey 39.3903 -75.0561 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshalltown, Iowa 42.0343 -92.9068 matched with DB +City: Marshalltown, state: Iowa, Lat: 42.0343, Lng: -92.9068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McHenry, Illinois 42.3387 -88.2932 matched with DB +City: McHenry, state: Illinois, Lat: 42.3387, Lng: -88.2932, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemon Grove, California 32.7331 -117.0344 matched with DB +City: Lemon Grove, state: California, Lat: 32.7331, Lng: -117.0344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestview, Florida 30.7477 -86.5785 matched with DB +City: Crestview, state: Florida, Lat: 30.7477, Lng: -86.5785, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mililani Town, Hawaii 21.4465 -158.0147 matched with DB +City: Mililani Town, state: Hawaii, Lat: 21.4465, Lng: -158.0147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chicago Heights, Illinois 41.5100 -87.6345 matched with DB +City: Chicago Heights, state: Illinois, Lat: 41.51, Lng: -87.6345, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kent, Ohio 41.1490 -81.3610 matched with DB +City: Kent, state: Ohio, Lat: 41.149, Lng: -81.361, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Ohio 41.1490 -81.3610 matched with DB +City: Kent, state: Washington, Lat: 47.3887, Lng: -122.2128, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Ohio 41.1490 -81.3610 matched with DB +City: Kent, state: New York, Lat: 41.4735, Lng: -73.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green, Ohio 40.9483 -81.4757 matched with DB +City: Green, state: Ohio, Lat: 40.9483, Lng: -81.4757, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alvin, Texas 29.3872 -95.2938 matched with DB +City: Alvin, state: Texas, Lat: 29.3872, Lng: -95.2938, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Balch Springs, Texas 32.7194 -96.6151 matched with DB +City: Balch Springs, state: Texas, Lat: 32.7194, Lng: -96.6151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Neenah, Wisconsin 44.1669 -88.4767 matched with DB +City: Neenah, state: Wisconsin, Lat: 44.1669, Lng: -88.4767, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, New York 40.7623 -73.3218 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, New York 40.7623 -73.3218 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ilchester, Maryland 39.2187 -76.7683 matched with DB +City: Ilchester, state: Maryland, Lat: 39.2187, Lng: -76.7683, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason City, Iowa 43.1487 -93.1997 matched with DB +City: Mason City, state: Iowa, Lat: 43.1487, Lng: -93.1997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Citrus Park, Florida 28.0730 -82.5628 matched with DB +City: Citrus Park, state: Florida, Lat: 28.073, Lng: -82.5628, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl, Mississippi 32.2730 -90.0918 matched with DB +City: Pearl, state: Mississippi, Lat: 32.273, Lng: -90.0918, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Lenox, Illinois 41.5095 -87.9703 matched with DB +City: New Lenox, state: Illinois, Lat: 41.5095, Lng: -87.9703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kahului, Hawaii 20.8715 -156.4603 matched with DB +City: Kahului, state: Hawaii, Lat: 20.8715, Lng: -156.4603, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Nebraska 41.4395 -96.4873 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Nebraska 41.4395 -96.4873 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Nebraska 41.4395 -96.4873 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holbrook, New York 40.7944 -73.0700 matched with DB +City: Holbrook, state: New York, Lat: 40.7944, Lng: -73.07, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Holbrook, New York 40.7944 -73.0700 matched with DB +City: Holbrook, state: Massachusetts, Lat: 42.1471, Lng: -71.0057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Michigan 42.3244 -83.3412 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Michigan 42.3244 -83.3412 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Michigan 42.3244 -83.3412 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Michigan 42.3244 -83.3412 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Michigan 42.3244 -83.3412 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Michigan 42.3244 -83.3412 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Forest, Illinois 41.6054 -87.7527 matched with DB +City: Oak Forest, state: Illinois, Lat: 41.6054, Lng: -87.7527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewa Gentry, Hawaii 21.3344 -158.0262 matched with DB +City: Ewa Gentry, state: Hawaii, Lat: 21.3344, Lng: -158.0262, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Islip, New York 40.7041 -73.2954 matched with DB +City: West Islip, state: New York, Lat: 40.7041, Lng: -73.2954, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kernersville, North Carolina 36.1065 -80.0842 matched with DB +City: Kernersville, state: North Carolina, Lat: 36.1065, Lng: -80.0842, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Linn, Oregon 45.3670 -122.6399 matched with DB +City: West Linn, state: Oregon, Lat: 45.367, Lng: -122.6399, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindenhurst, New York 40.6858 -73.3710 matched with DB +City: Lindenhurst, state: New York, Lat: 40.6858, Lng: -73.371, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lindenhurst, New York 40.6858 -73.3710 matched with DB +City: Lindenhurst, state: Illinois, Lat: 42.4175, Lng: -88.0257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomasville, North Carolina 35.8813 -80.0807 matched with DB +City: Thomasville, state: North Carolina, Lat: 35.8813, Lng: -80.0807, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Thomasville, North Carolina 35.8813 -80.0807 matched with DB +City: Thomasville, state: Georgia, Lat: 30.8394, Lng: -83.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Asheboro, North Carolina 35.7158 -79.8127 matched with DB +City: Asheboro, state: North Carolina, Lat: 35.7158, Lng: -79.8127, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lochearn, Maryland 39.3461 -76.7307 matched with DB +City: Lochearn, state: Maryland, Lat: 39.3461, Lng: -76.7307, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benicia, California 38.0725 -122.1526 matched with DB +City: Benicia, state: California, Lat: 38.0725, Lng: -122.1526, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leisure City, Florida 25.4935 -80.4363 matched with DB +City: Leisure City, state: Florida, Lat: 25.4935, Lng: -80.4363, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plum, Pennsylvania 40.5024 -79.7495 matched with DB +City: Plum, state: Pennsylvania, Lat: 40.5024, Lng: -79.7495, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granite City, Illinois 38.7296 -90.1268 matched with DB +City: Granite City, state: Illinois, Lat: 38.7296, Lng: -90.1268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wooster, Ohio 40.8172 -81.9336 matched with DB +City: Wooster, state: Ohio, Lat: 40.8172, Lng: -81.9336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gladstone, Missouri 39.2134 -94.5592 matched with DB +City: Gladstone, state: Missouri, Lat: 39.2134, Lng: -94.5592, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gladstone, Missouri 39.2134 -94.5592 matched with DB +City: Gladstone, state: Oregon, Lat: 45.3864, Lng: -122.5934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemoore, California 36.2949 -119.7983 matched with DB +City: Lemoore, state: California, Lat: 36.2949, Lng: -119.7983, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheeling, West Virginia 40.0752 -80.6951 matched with DB +City: Wheeling, state: West Virginia, Lat: 40.0752, Lng: -80.6951, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheeling, West Virginia 40.0752 -80.6951 matched with DB +City: Wheeling, state: Illinois, Lat: 42.1308, Lng: -87.924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Georgia 33.5942 -84.5629 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Georgia 33.5942 -84.5629 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Georgia 33.5942 -84.5629 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Georgia 33.5942 -84.5629 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paducah, Kentucky 37.0711 -88.6440 matched with DB +City: Paducah, state: Kentucky, Lat: 37.0711, Lng: -88.644, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shoreview, Minnesota 45.0842 -93.1358 matched with DB +City: Shoreview, state: Minnesota, Lat: 45.0842, Lng: -93.1358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, North Carolina 35.6590 -78.4498 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, North Carolina 35.6590 -78.4498 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, North Carolina 35.6590 -78.4498 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, North Carolina 35.6590 -78.4498 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, North Carolina 35.6590 -78.4498 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temple Terrace, Florida 28.0436 -82.3773 matched with DB +City: Temple Terrace, state: Florida, Lat: 28.0436, Lng: -82.3773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ives Estates, Florida 25.9632 -80.1830 matched with DB +City: Ives Estates, state: Florida, Lat: 25.9632, Lng: -80.183, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Melbourne, Florida 28.0694 -80.6736 matched with DB +City: West Melbourne, state: Florida, Lat: 28.0694, Lng: -80.6736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon Hills, Illinois 42.2340 -87.9608 matched with DB +City: Vernon Hills, state: Illinois, Lat: 42.234, Lng: -87.9608, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Springs, Florida 26.6348 -80.0969 matched with DB +City: Palm Springs, state: Florida, Lat: 26.6348, Lng: -80.0969, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palm Springs, Florida 26.6348 -80.0969 matched with DB +City: Palm Springs, state: California, Lat: 33.8017, Lng: -116.5382, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New York 42.9338 -76.5685 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Portland, Maine 43.6310 -70.2895 matched with DB +City: South Portland, state: Maine, Lat: 43.631, Lng: -70.2895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Horn Lake, Mississippi 34.9512 -90.0501 matched with DB +City: Horn Lake, state: Mississippi, Lat: 34.9512, Lng: -90.0501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun City West, Arizona 33.6695 -112.3573 matched with DB +City: Sun City West, state: Arizona, Lat: 33.6695, Lng: -112.3573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edwardsville, Illinois 38.7922 -89.9874 matched with DB +City: Edwardsville, state: Illinois, Lat: 38.7922, Lng: -89.9874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Georgia 33.5818 -85.0838 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Georgia 33.5818 -85.0838 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, New York 40.7832 -73.4732 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, New York 40.7832 -73.4732 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Pasadena, California 34.1103 -118.1573 matched with DB +City: South Pasadena, state: California, Lat: 34.1103, Lng: -118.1573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paramus, New Jersey 40.9455 -74.0712 matched with DB +City: Paramus, state: New Jersey, Lat: 40.9455, Lng: -74.0712, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Wisconsin 46.6941 -92.0823 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Wisconsin 46.6941 -92.0823 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanger, California 36.6990 -119.5575 matched with DB +City: Sanger, state: California, Lat: 36.699, Lng: -119.5575, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanger, California 36.6990 -119.5575 matched with DB +City: Sanger, state: Texas, Lat: 33.3715, Lng: -97.1678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cabot, Arkansas 34.9766 -92.0274 matched with DB +City: Cabot, state: Arkansas, Lat: 34.9766, Lng: -92.0274, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mint Hill, North Carolina 35.1783 -80.6528 matched with DB +City: Mint Hill, state: North Carolina, Lat: 35.1783, Lng: -80.6528, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, California 40.7943 -124.1564 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, California 40.7943 -124.1564 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brawley, California 32.9783 -115.5287 matched with DB +City: Brawley, state: California, Lat: 32.9783, Lng: -115.5287, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shirley, New York 40.7936 -72.8748 matched with DB +City: Shirley, state: New York, Lat: 40.7936, Lng: -72.8748, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Ohio 40.0437 -84.2186 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Ohio 40.0437 -84.2186 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Ohio 40.0437 -84.2186 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Ohio 40.0437 -84.2186 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Ohio 40.0437 -84.2186 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Ohio 40.0437 -84.2186 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmira, New York 42.0938 -76.8097 matched with DB +City: Elmira, state: New York, Lat: 42.0938, Lng: -76.8097, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apollo Beach, Florida 27.7618 -82.4003 matched with DB +City: Apollo Beach, state: Florida, Lat: 27.7618, Lng: -82.4003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Owatonna, Minnesota 44.0912 -93.2312 matched with DB +City: Owatonna, state: Minnesota, Lat: 44.0912, Lng: -93.2312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camas, Washington 45.6005 -122.4304 matched with DB +City: Camas, state: Washington, Lat: 45.6005, Lng: -122.4304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Chicago, Indiana 41.6469 -87.4545 matched with DB +City: East Chicago, state: Indiana, Lat: 41.6469, Lng: -87.4545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, Illinois 41.8479 -88.3109 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, Illinois 41.8479 -88.3109 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, California 38.5422 -122.8089 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, California 38.5422 -122.8089 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, California 38.5422 -122.8089 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wasco, California 35.5938 -119.3671 matched with DB +City: Wasco, state: California, Lat: 35.5938, Lng: -119.3671, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Salt Lake, Utah 40.7057 -111.8986 matched with DB +City: South Salt Lake, state: Utah, Lat: 40.7057, Lng: -111.8986, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wright, Florida 30.4445 -86.6419 matched with DB +City: Wright, state: Florida, Lat: 30.4445, Lng: -86.6419, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pooler, Georgia 32.1043 -81.2569 matched with DB +City: Pooler, state: Georgia, Lat: 32.1043, Lng: -81.2569, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodburn, Oregon 45.1472 -122.8603 matched with DB +City: Woodburn, state: Oregon, Lat: 45.1472, Lng: -122.8603, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodburn, Oregon 45.1472 -122.8603 matched with DB +City: Woodburn, state: Virginia, Lat: 38.8503, Lng: -77.2322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Alabama 34.7843 -86.9503 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Alabama 34.7843 -86.9503 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Alabama 34.7843 -86.9503 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Alabama 34.7843 -86.9503 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Alabama 34.7843 -86.9503 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Grove, Oregon 45.5243 -123.1097 matched with DB +City: Forest Grove, state: Oregon, Lat: 45.5243, Lng: -123.1097, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Imperial Beach, California 32.5693 -117.1180 matched with DB +City: Imperial Beach, state: California, Lat: 32.5693, Lng: -117.118, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Minnesota 43.6721 -92.9784 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Minnesota 43.6721 -92.9784 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockport, Illinois 41.5906 -88.0293 matched with DB +City: Lockport, state: New York, Lat: 43.1698, Lng: -78.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockport, Illinois 41.5906 -88.0293 matched with DB +City: Lockport, state: Illinois, Lat: 41.5906, Lng: -88.0293, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terrytown, Louisiana 29.9014 -90.0279 matched with DB +City: Terrytown, state: Louisiana, Lat: 29.9014, Lng: -90.0279, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, Ohio 41.1358 -81.8695 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Illinois 42.3096 -88.4353 matched with DB +City: Woodstock, state: Illinois, Lat: 42.3096, Lng: -88.4353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodstock, Illinois 42.3096 -88.4353 matched with DB +City: Woodstock, state: Georgia, Lat: 34.1026, Lng: -84.5091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winona, Minnesota 44.0505 -91.6684 matched with DB +City: Winona, state: Minnesota, Lat: 44.0505, Lng: -91.6684, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northdale, Florida 28.1058 -82.5263 matched with DB +City: Northdale, state: Florida, Lat: 28.1058, Lng: -82.5263, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Key West, Florida 24.5642 -81.7775 matched with DB +City: Key West, state: Florida, Lat: 24.5642, Lng: -81.7775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Indiana 39.4948 -86.0544 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, Florida 28.1312 -82.5999 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgewood, New Jersey 40.9821 -74.1127 matched with DB +City: Ridgewood, state: New Jersey, Lat: 40.9821, Lng: -74.1127, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hercules, California 38.0064 -122.2564 matched with DB +City: Hercules, state: California, Lat: 38.0064, Lng: -122.2564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Mill, South Carolina 35.0061 -80.9389 matched with DB +City: Fort Mill, state: South Carolina, Lat: 35.0061, Lng: -80.9389, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cave Spring, Virginia 37.2254 -80.0072 matched with DB +City: Cave Spring, state: Virginia, Lat: 37.2254, Lng: -80.0072, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemount, Minnesota 44.7466 -93.0661 matched with DB +City: Rosemount, state: Minnesota, Lat: 44.7466, Lng: -93.0661, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilsonville, Oregon 45.3109 -122.7702 matched with DB +City: Wilsonville, state: Oregon, Lat: 45.3109, Lng: -122.7702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairland, Maryland 39.0803 -76.9527 matched with DB +City: Fairland, state: Maryland, Lat: 39.0803, Lng: -76.9527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lodi, New Jersey 40.8784 -74.0814 matched with DB +City: Lodi, state: New Jersey, Lat: 40.8784, Lng: -74.0814, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lodi, New Jersey 40.8784 -74.0814 matched with DB +City: Lodi, state: California, Lat: 38.1218, Lng: -121.2932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm City, Florida 27.1735 -80.2862 matched with DB +City: Palm City, state: Florida, Lat: 27.1735, Lng: -80.2862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Spring, Texas 32.2389 -101.4799 matched with DB +City: Big Spring, state: Texas, Lat: 32.2389, Lng: -101.4799, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbine, Colorado 39.5879 -105.0694 matched with DB +City: Columbine, state: Colorado, Lat: 39.5879, Lng: -105.0694, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk River, Minnesota 45.3314 -93.5670 matched with DB +City: Elk River, state: Minnesota, Lat: 45.3314, Lng: -93.567, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Missouri 38.8802 -94.5227 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Missouri 38.8802 -94.5227 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bessemer, Alabama 33.3712 -86.9728 matched with DB +City: Bessemer, state: Alabama, Lat: 33.3712, Lng: -86.9728, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norfolk, Nebraska 42.0324 -97.4217 matched with DB +City: Norfolk, state: Virginia, Lat: 36.8945, Lng: -76.259, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norfolk, Nebraska 42.0324 -97.4217 matched with DB +City: Norfolk, state: Nebraska, Lat: 42.0324, Lng: -97.4217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norfolk, Nebraska 42.0324 -97.4217 matched with DB +City: Norfolk, state: Massachusetts, Lat: 42.1163, Lng: -71.3295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colleyville, Texas 32.8913 -97.1486 matched with DB +City: Colleyville, state: Texas, Lat: 32.8913, Lng: -97.1486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jenks, Oklahoma 35.9981 -95.9736 matched with DB +City: Jenks, state: Oklahoma, Lat: 35.9981, Lng: -95.9736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Cerrito, California 37.9196 -122.3025 matched with DB +City: El Cerrito, state: California, Lat: 37.9196, Lng: -122.3025, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chanhassen, Minnesota 44.8546 -93.5621 matched with DB +City: Chanhassen, state: Minnesota, Lat: 44.8546, Lng: -93.5621, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Suitland, Maryland 38.8492 -76.9225 matched with DB +City: Suitland, state: Maryland, Lat: 38.8492, Lng: -76.9225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inkster, Michigan 42.2935 -83.3148 matched with DB +City: Inkster, state: Michigan, Lat: 42.2935, Lng: -83.3148, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Washington, Maryland 38.7339 -77.0069 matched with DB +City: Fort Washington, state: Maryland, Lat: 38.7339, Lng: -77.0069, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Ohio 40.2279 -83.3595 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Ohio 40.2279 -83.3595 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Ohio 40.2279 -83.3595 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Ohio 40.2279 -83.3595 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville Centre, New York 40.6643 -73.6383 matched with DB +City: Rockville Centre, state: New York, Lat: 40.6643, Lng: -73.6383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Arizona 33.0590 -111.4209 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Arizona 33.0590 -111.4209 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Arizona 33.0590 -111.4209 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Arizona 33.0590 -111.4209 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Arizona 33.0590 -111.4209 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Arizona 33.0590 -111.4209 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm River-Clair Mel, Florida 27.9239 -82.3791 matched with DB +City: Palm River-Clair Mel, state: Florida, Lat: 27.9239, Lng: -82.3791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Mississippi 34.3627 -89.5336 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Mississippi 34.3627 -89.5336 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Mississippi 34.3627 -89.5336 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Mississippi 34.3627 -89.5336 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Mississippi 34.3627 -89.5336 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Venice, Florida 27.1184 -82.4137 matched with DB +City: Venice, state: Florida, Lat: 27.1184, Lng: -82.4137, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pace, Florida 30.6188 -87.1667 matched with DB +City: Pace, state: Florida, Lat: 30.6188, Lng: -87.1667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Chicago, Illinois 41.8960 -88.2253 matched with DB +City: West Chicago, state: Illinois, Lat: 41.896, Lng: -88.2253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trussville, Alabama 33.6405 -86.5815 matched with DB +City: Trussville, state: Alabama, Lat: 33.6405, Lng: -86.5815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tumwater, Washington 46.9891 -122.9175 matched with DB +City: Tumwater, state: Washington, Lat: 46.9891, Lng: -122.9175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Idaho 46.7308 -116.9986 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Staunton, Virginia 38.1593 -79.0611 matched with DB +City: Staunton, state: Virginia, Lat: 38.1593, Lng: -79.0611, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Derby, Kansas 37.5571 -97.2551 matched with DB +City: Derby, state: Connecticut, Lat: 41.3265, Lng: -73.0833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Kansas 37.5571 -97.2551 matched with DB +City: Derby, state: Kansas, Lat: 37.5571, Lng: -97.2551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Kansas 37.5571 -97.2551 matched with DB +City: Derby, state: Colorado, Lat: 39.84, Lng: -104.9172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stevens Point, Wisconsin 44.5241 -89.5507 matched with DB +City: Stevens Point, state: Wisconsin, Lat: 44.5241, Lng: -89.5507, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Okemos, Michigan 42.7057 -84.4135 matched with DB +City: Okemos, state: Michigan, Lat: 42.7057, Lng: -84.4135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cliffside Park, New Jersey 40.8222 -73.9879 matched with DB +City: Cliffside Park, state: New Jersey, Lat: 40.8222, Lng: -73.9879, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Xenia, Ohio 39.6829 -83.9413 matched with DB +City: Xenia, state: Ohio, Lat: 39.6829, Lng: -83.9413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Hood, Texas 31.1357 -97.7834 matched with DB +City: Fort Hood, state: Texas, Lat: 31.1357, Lng: -97.7834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kalispell, Montana 48.2153 -114.3274 matched with DB +City: Kalispell, state: Montana, Lat: 48.2153, Lng: -114.3274, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Bradenton, Florida 27.4612 -82.5822 matched with DB +City: South Bradenton, state: Florida, Lat: 27.4612, Lng: -82.5822, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mercer Island, Washington 47.5661 -122.2320 matched with DB +City: Mercer Island, state: Washington, Lat: 47.5661, Lng: -122.232, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver Springs Shores, Florida 29.1126 -82.0149 matched with DB +City: Silver Springs Shores, state: Florida, Lat: 29.1126, Lng: -82.0149, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Whittier-Los Nietos, California 33.9759 -118.0689 matched with DB +City: West Whittier-Los Nietos, state: California, Lat: 33.9759, Lng: -118.0689, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peekskill, New York 41.2884 -73.9227 matched with DB +City: Peekskill, state: New York, Lat: 41.2884, Lng: -73.9227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belvidere, Illinois 42.2543 -88.8649 matched with DB +City: Belvidere, state: Illinois, Lat: 42.2543, Lng: -88.8649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newberg, Oregon 45.3075 -122.9601 matched with DB +City: Newberg, state: Oregon, Lat: 45.3075, Lng: -122.9601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holt, Michigan 42.6416 -84.5308 matched with DB +City: Holt, state: Michigan, Lat: 42.6416, Lng: -84.5308, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: De Pere, Wisconsin 44.4308 -88.0785 matched with DB +City: De Pere, state: Wisconsin, Lat: 44.4308, Lng: -88.0785, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Virginia 37.2864 -80.0555 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Virginia 37.2864 -80.0555 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Virginia 37.2864 -80.0555 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Virginia 37.2864 -80.0555 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Virginia 37.2864 -80.0555 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Virginia 37.2864 -80.0555 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ottumwa, Iowa 41.0195 -92.4186 matched with DB +City: Ottumwa, state: Iowa, Lat: 41.0195, Lng: -92.4186, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tarpon Springs, Florida 28.1493 -82.7623 matched with DB +City: Tarpon Springs, state: Florida, Lat: 28.1493, Lng: -82.7623, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galt, California 38.2698 -121.3004 matched with DB +City: Galt, state: California, Lat: 38.2698, Lng: -121.3004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazelwood, Missouri 38.7931 -90.3899 matched with DB +City: Hazelwood, state: Missouri, Lat: 38.7931, Lng: -90.3899, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norco, California 33.9252 -117.5498 matched with DB +City: Norco, state: California, Lat: 33.9252, Lng: -117.5498, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, California 37.8919 -122.1189 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, California 37.8919 -122.1189 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, California 37.8919 -122.1189 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, California 37.8919 -122.1189 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Creek East, Washington 47.8361 -122.1877 matched with DB +City: Mill Creek East, state: Washington, Lat: 47.8361, Lng: -122.1877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Wisconsin 42.7986 -87.8762 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forney, Texas 32.7440 -96.4529 matched with DB +City: Forney, state: Texas, Lat: 32.744, Lng: -96.4529, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sebastian, Florida 27.7822 -80.4819 matched with DB +City: Sebastian, state: Florida, Lat: 27.7822, Lng: -80.4819, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsville, Texas 27.5094 -97.8610 matched with DB +City: Kingsville, state: Texas, Lat: 27.5094, Lng: -97.861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkridge, Maryland 39.1941 -76.7428 matched with DB +City: Elkridge, state: Maryland, Lat: 39.1941, Lng: -76.7428, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reedley, California 36.5988 -119.4471 matched with DB +City: Reedley, state: California, Lat: 36.5988, Lng: -119.4471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barstow, California 34.8661 -117.0471 matched with DB +City: Barstow, state: California, Lat: 34.8661, Lng: -117.0471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon Lake, Ohio 41.4944 -82.0159 matched with DB +City: Avon Lake, state: Ohio, Lat: 41.4944, Lng: -82.0159, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allendale, Michigan 42.9845 -85.9499 matched with DB +City: Allendale, state: Michigan, Lat: 42.9845, Lng: -85.9499, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Park, Texas 32.8506 -96.7937 matched with DB +City: University Park, state: Texas, Lat: 32.8506, Lng: -96.7937, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fish Hawk, Florida 27.8511 -82.2164 matched with DB +City: Fish Hawk, state: Florida, Lat: 27.8511, Lng: -82.2164, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose Park, Illinois 41.9030 -87.8636 matched with DB +City: Melrose Park, state: Illinois, Lat: 41.903, Lng: -87.8636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker, Michigan 42.9853 -85.7446 matched with DB +City: Walker, state: Michigan, Lat: 42.9853, Lng: -85.7446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barberton, Ohio 41.0095 -81.6037 matched with DB +City: Barberton, state: Ohio, Lat: 41.0095, Lng: -81.6037, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carteret, New Jersey 40.5849 -74.2284 matched with DB +City: Carteret, state: New Jersey, Lat: 40.5849, Lng: -74.2284, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moses Lake, Washington 47.1279 -119.2759 matched with DB +City: Moses Lake, state: Washington, Lat: 47.1279, Lng: -119.2759, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Mississippi 32.2778 -89.9896 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Mississippi 32.2778 -89.9896 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Mississippi 32.2778 -89.9896 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Tustin, California 33.7636 -117.7947 matched with DB +City: North Tustin, state: California, Lat: 33.7636, Lng: -117.7947, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, South Carolina 33.8401 -79.0431 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, South Carolina 33.8401 -79.0431 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, South Carolina 33.8401 -79.0431 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, South Carolina 33.8401 -79.0431 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Maryland 39.4190 -76.2964 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Maryland 39.4190 -76.2964 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dickinson, North Dakota 46.8918 -102.7925 matched with DB +City: Dickinson, state: North Dakota, Lat: 46.8918, Lng: -102.7925, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dickinson, North Dakota 46.8918 -102.7925 matched with DB +City: Dickinson, state: Texas, Lat: 29.4548, Lng: -95.0589, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corsicana, Texas 32.0824 -96.4665 matched with DB +City: Corsicana, state: Texas, Lat: 32.0824, Lng: -96.4665, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mequon, Wisconsin 43.2352 -87.9839 matched with DB +City: Mequon, state: Wisconsin, Lat: 43.2352, Lng: -87.9839, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Nebraska 40.5961 -98.3900 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Nebraska 40.5961 -98.3900 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Nebraska 40.5961 -98.3900 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Rhode Island 41.4801 -71.3203 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Rhode Island 41.4801 -71.3203 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Rhode Island 41.4801 -71.3203 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muskego, Wisconsin 42.8860 -88.1291 matched with DB +City: Muskego, state: Wisconsin, Lat: 42.886, Lng: -88.1291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Romulus, Michigan 42.2237 -83.3660 matched with DB +City: Romulus, state: Michigan, Lat: 42.2237, Lng: -83.366, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seal Beach, California 33.7542 -118.0714 matched with DB +City: Seal Beach, state: California, Lat: 33.7542, Lng: -118.0714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waukee, Iowa 41.5985 -93.8869 matched with DB +City: Waukee, state: Iowa, Lat: 41.5985, Lng: -93.8869, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maywood, California 33.9886 -118.1877 matched with DB +City: Maywood, state: New Jersey, Lat: 40.9025, Lng: -74.0634, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, California 33.9886 -118.1877 matched with DB +City: Maywood, state: Illinois, Lat: 41.8798, Lng: -87.8442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, California 33.9886 -118.1877 matched with DB +City: Maywood, state: California, Lat: 33.9886, Lng: -118.1877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norton Shores, Michigan 43.1621 -86.2519 matched with DB +City: Norton Shores, state: Michigan, Lat: 43.1621, Lng: -86.2519, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandusky, Ohio 41.4468 -82.7024 matched with DB +City: Sandusky, state: Ohio, Lat: 41.4468, Lng: -82.7024, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugar Hill, Georgia 34.1080 -84.0558 matched with DB +City: Sugar Hill, state: Georgia, Lat: 34.108, Lng: -84.0558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton Grove, Illinois 42.0423 -87.7890 matched with DB +City: Morton Grove, state: Illinois, Lat: 42.0423, Lng: -87.789, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westchase, Florida 28.0597 -82.6110 matched with DB +City: Westchase, state: Florida, Lat: 28.0597, Lng: -82.611, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loma Linda, California 34.0450 -117.2498 matched with DB +City: Loma Linda, state: California, Lat: 34.045, Lng: -117.2498, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denison, Texas 33.7672 -96.5808 matched with DB +City: Denison, state: Texas, Lat: 33.7672, Lng: -96.5808, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown, New York 43.9734 -75.9094 matched with DB +City: Watertown, state: South Dakota, Lat: 44.9094, Lng: -97.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, New York 43.9734 -75.9094 matched with DB +City: Watertown, state: New York, Lat: 43.9734, Lng: -75.9094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, New York 43.9734 -75.9094 matched with DB +City: Watertown, state: Wisconsin, Lat: 43.1893, Lng: -88.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyandotte, Michigan 42.2113 -83.1558 matched with DB +City: Wyandotte, state: Michigan, Lat: 42.2113, Lng: -83.1558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perrysburg, Ohio 41.5377 -83.6413 matched with DB +City: Perrysburg, state: Ohio, Lat: 41.5377, Lng: -83.6413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Dodge, Iowa 42.5098 -94.1751 matched with DB +City: Fort Dodge, state: Iowa, Lat: 42.5098, Lng: -94.1751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kuna, Idaho 43.4880 -116.3933 matched with DB +City: Kuna, state: Idaho, Lat: 43.488, Lng: -116.3933, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arnold, Maryland 39.0437 -76.4974 matched with DB +City: Arnold, state: Maryland, Lat: 39.0437, Lng: -76.4974, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arnold, Maryland 39.0437 -76.4974 matched with DB +City: Arnold, state: Missouri, Lat: 38.4297, Lng: -90.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carolina Forest, South Carolina 33.7651 -78.9130 matched with DB +City: Carolina Forest, state: South Carolina, Lat: 33.7651, Lng: -78.913, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Ohio 41.4485 -82.0187 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Ohio 41.4485 -82.0187 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverbank, California 37.7260 -120.9433 matched with DB +City: Riverbank, state: California, Lat: 37.726, Lng: -120.9433, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bailey's Crossroads, Virginia 38.8477 -77.1305 matched with DB +City: Bailey's Crossroads, state: Virginia, Lat: 38.8477, Lng: -77.1305, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ardmore, Oklahoma 34.1949 -97.1256 matched with DB +City: Ardmore, state: Pennsylvania, Lat: 40.0033, Lng: -75.2947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ardmore, Oklahoma 34.1949 -97.1256 matched with DB +City: Ardmore, state: Oklahoma, Lat: 34.1949, Lng: -97.1256, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Soledad, California 36.4432 -121.3426 matched with DB +City: Soledad, state: California, Lat: 36.4432, Lng: -121.3426, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zanesville, Ohio 39.9565 -82.0132 matched with DB +City: Zanesville, state: Ohio, Lat: 39.9565, Lng: -82.0132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Benito, Texas 26.1298 -97.6440 matched with DB +City: San Benito, state: Texas, Lat: 26.1298, Lng: -97.644, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frederickson, Washington 47.0916 -122.3603 matched with DB +City: Frederickson, state: Washington, Lat: 47.0916, Lng: -122.3603, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medford, New York 40.8220 -72.9859 matched with DB +City: Medford, state: Massachusetts, Lat: 42.4234, Lng: -71.1087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, New York 40.8220 -72.9859 matched with DB +City: Medford, state: New York, Lat: 40.822, Lng: -72.9859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, New York 40.8220 -72.9859 matched with DB +City: Medford, state: Oregon, Lat: 42.3372, Lng: -122.854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, New York 40.8220 -72.9859 matched with DB +City: Medford, state: New Jersey, Lat: 39.8639, Lng: -74.8231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverleaf, Texas 29.7882 -95.1724 matched with DB +City: Cloverleaf, state: Texas, Lat: 29.7882, Lng: -95.1724, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lutz, Florida 28.1396 -82.4467 matched with DB +City: Lutz, state: Florida, Lat: 28.1396, Lng: -82.4467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dinuba, California 36.5453 -119.3987 matched with DB +City: Dinuba, state: California, Lat: 36.5453, Lng: -119.3987, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Potomac, Maryland 39.0955 -77.2373 matched with DB +City: North Potomac, state: Maryland, Lat: 39.0955, Lng: -77.2373, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bainbridge Island, Washington 47.6439 -122.5434 matched with DB +City: Bainbridge Island, state: Washington, Lat: 47.6439, Lng: -122.5434, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dix Hills, New York 40.8033 -73.3375 matched with DB +City: Dix Hills, state: New York, Lat: 40.8033, Lng: -73.3375, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenbelt, Maryland 38.9953 -76.8885 matched with DB +City: Greenbelt, state: Maryland, Lat: 38.9953, Lng: -76.8885, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayonet Point, Florida 28.3254 -82.6834 matched with DB +City: Bayonet Point, state: Florida, Lat: 28.3254, Lng: -82.6834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgeland, Mississippi 32.4236 -90.1481 matched with DB +City: Ridgeland, state: Mississippi, Lat: 32.4236, Lng: -90.1481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coral Terrace, Florida 25.7464 -80.3049 matched with DB +City: Coral Terrace, state: Florida, Lat: 25.7464, Lng: -80.3049, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn Hills, Michigan 42.6735 -83.2448 matched with DB +City: Auburn Hills, state: Michigan, Lat: 42.6735, Lng: -83.2448, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, California 36.5715 -119.6143 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, California 36.5715 -119.6143 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, California 36.5715 -119.6143 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Texas 33.6688 -95.5460 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Texas 33.6688 -95.5460 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Texas 33.6688 -95.5460 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zion, Illinois 42.4603 -87.8511 matched with DB +City: Zion, state: Illinois, Lat: 42.4603, Lng: -87.8511, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Iowa 41.8435 -90.2412 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Ohio 39.6339 -84.1449 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Ohio 39.6339 -84.1449 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homer Glen, Illinois 41.6043 -87.9497 matched with DB +City: Homer Glen, state: Illinois, Lat: 41.6043, Lng: -87.9497, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Ohio 39.7835 -84.1219 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Ohio 39.7835 -84.1219 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Ohio 39.7835 -84.1219 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Ohio 39.7835 -84.1219 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, Florida 28.4727 -81.4169 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Florida 28.4727 -81.4169 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Florida 28.4727 -81.4169 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leland, North Carolina 34.2042 -78.0279 matched with DB +City: Leland, state: North Carolina, Lat: 34.2042, Lng: -78.0279, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Socastee, South Carolina 33.6871 -79.0086 matched with DB +City: Socastee, state: South Carolina, Lat: 33.6871, Lng: -79.0086, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Utah 40.9845 -111.9065 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Utah 40.9845 -111.9065 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Utah 40.9845 -111.9065 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Utah 40.9845 -111.9065 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Utah 40.9845 -111.9065 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Utah 40.9845 -111.9065 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Harbor, Washington 48.2964 -122.6333 matched with DB +City: Oak Harbor, state: Washington, Lat: 48.2964, Lng: -122.6333, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Herndon, Virginia 38.9699 -77.3867 matched with DB +City: Herndon, state: Virginia, Lat: 38.9699, Lng: -77.3867, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ponca City, Oklahoma 36.7235 -97.0677 matched with DB +City: Ponca City, state: Oklahoma, Lat: 36.7235, Lng: -97.0677, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Landover, Maryland 38.9241 -76.8875 matched with DB +City: Landover, state: Maryland, Lat: 38.9241, Lng: -76.8875, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Augusta, South Carolina 33.5214 -81.9547 matched with DB +City: North Augusta, state: South Carolina, Lat: 33.5214, Lng: -81.9547, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: King of Prussia, Pennsylvania 40.0963 -75.3821 matched with DB +City: King of Prussia, state: Pennsylvania, Lat: 40.0963, Lng: -75.3821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Georgia 33.7711 -84.2963 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Georgia 33.7711 -84.2963 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Georgia 33.7711 -84.2963 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Georgia 33.7711 -84.2963 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Faribault, Minnesota 44.2996 -93.2789 matched with DB +City: Faribault, state: Minnesota, Lat: 44.2996, Lng: -93.2789, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Laurel, Maryland 39.1285 -76.8476 matched with DB +City: North Laurel, state: Maryland, Lat: 39.1285, Lng: -76.8476, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay Point, California 38.0329 -121.9615 matched with DB +City: Bay Point, state: California, Lat: 38.0329, Lng: -121.9615, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Happy Valley, Oregon 45.4358 -122.5081 matched with DB +City: Happy Valley, state: Oregon, Lat: 45.4358, Lng: -122.5081, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port St. John, Florida 28.4757 -80.8104 matched with DB +City: Port St. John, state: Florida, Lat: 28.4757, Lng: -80.8104, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benbrook, Texas 32.6788 -97.4637 matched with DB +City: Benbrook, state: Texas, Lat: 32.6788, Lng: -97.4637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Memphis, Arkansas 35.1530 -90.1996 matched with DB +City: West Memphis, state: Arkansas, Lat: 35.153, Lng: -90.1996, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kerrville, Texas 30.0398 -99.1320 matched with DB +City: Kerrville, state: Texas, Lat: 30.0398, Lng: -99.132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ballenger Creek, Maryland 39.3807 -77.4206 matched with DB +City: Ballenger Creek, state: Maryland, Lat: 39.3807, Lng: -77.4206, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ladera Ranch, California 33.5492 -117.6417 matched with DB +City: Ladera Ranch, state: California, Lat: 33.5492, Lng: -117.6417, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Bear Lake, Minnesota 45.0656 -93.0150 matched with DB +City: White Bear Lake, state: Minnesota, Lat: 45.0656, Lng: -93.015, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Illinois 38.6770 -90.0063 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmwood Park, Illinois 41.9225 -87.8163 matched with DB +City: Elmwood Park, state: New Jersey, Lat: 40.9049, Lng: -74.1201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elmwood Park, Illinois 41.9225 -87.8163 matched with DB +City: Elmwood Park, state: Illinois, Lat: 41.9225, Lng: -87.8163, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Starkville, Mississippi 33.4608 -88.8297 matched with DB +City: Starkville, state: Mississippi, Lat: 33.4608, Lng: -88.8297, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Plainfield, New Jersey 40.5748 -74.4152 matched with DB +City: South Plainfield, state: New Jersey, Lat: 40.5748, Lng: -74.4152, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westmont, Illinois 41.7948 -87.9742 matched with DB +City: Westmont, state: Illinois, Lat: 41.7948, Lng: -87.9742, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, Illinois 41.7948 -87.9742 matched with DB +City: Westmont, state: California, Lat: 33.9417, Lng: -118.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, Illinois 41.7948 -87.9742 matched with DB +City: Westmont, state: New Jersey, Lat: 39.9082, Lng: -75.0551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wekiwa Springs, Florida 28.6984 -81.4251 matched with DB +City: Wekiwa Springs, state: Florida, Lat: 28.6984, Lng: -81.4251, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmetto Bay, Florida 25.6219 -80.3221 matched with DB +City: Palmetto Bay, state: Florida, Lat: 25.6219, Lng: -80.3221, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, New Jersey 40.5083 -74.5010 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, New Jersey 40.5083 -74.5010 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, New Jersey 40.5083 -74.5010 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, Virginia 38.8531 -77.2997 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belton, Missouri 38.8192 -94.5335 matched with DB +City: Belton, state: Missouri, Lat: 38.8192, Lng: -94.5335, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belton, Missouri 38.8192 -94.5335 matched with DB +City: Belton, state: Texas, Lat: 31.0525, Lng: -97.479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Lynnwood, Washington 47.8533 -122.2762 matched with DB +City: North Lynnwood, state: Washington, Lat: 47.8533, Lng: -122.2762, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pelham, Alabama 33.3114 -86.7573 matched with DB +City: Pelham, state: New York, Lat: 40.9, Lng: -73.8063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pelham, Alabama 33.3114 -86.7573 matched with DB +City: Pelham, state: Alabama, Lat: 33.3114, Lng: -86.7573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pelham, Alabama 33.3114 -86.7573 matched with DB +City: Pelham, state: New Hampshire, Lat: 42.7335, Lng: -71.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yukon, Oklahoma 35.5201 -97.7639 matched with DB +City: Yukon, state: Oklahoma, Lat: 35.5201, Lng: -97.7639, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Simpsonville, South Carolina 34.7287 -82.2569 matched with DB +City: Simpsonville, state: South Carolina, Lat: 34.7287, Lng: -82.2569, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Emporia, Kansas 38.4028 -96.1932 matched with DB +City: Emporia, state: Kansas, Lat: 38.4028, Lng: -96.1932, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saginaw, Texas 32.8657 -97.3654 matched with DB +City: Saginaw, state: Michigan, Lat: 43.4199, Lng: -83.9501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Saginaw, Texas 32.8657 -97.3654 matched with DB +City: Saginaw, state: Texas, Lat: 32.8657, Lng: -97.3654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Florida 27.8784 -82.2624 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Florida 27.8784 -82.2624 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Florida 27.8784 -82.2624 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wadsworth, Ohio 41.0279 -81.7323 matched with DB +City: Wadsworth, state: Ohio, Lat: 41.0279, Lng: -81.7323, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rolling Meadows, Illinois 42.0747 -88.0252 matched with DB +City: Rolling Meadows, state: Illinois, Lat: 42.0747, Lng: -88.0252, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Solon, Ohio 41.3865 -81.4400 matched with DB +City: Solon, state: Ohio, Lat: 41.3865, Lng: -81.44, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mandan, North Dakota 46.8290 -100.8870 matched with DB +City: Mandan, state: North Dakota, Lat: 46.829, Lng: -100.887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Maine 44.0851 -70.2492 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellview, Florida 30.4620 -87.3120 matched with DB +City: Bellview, state: Florida, Lat: 30.462, Lng: -87.312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Nebraska 41.4366 -97.3565 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Nebraska 41.4366 -97.3565 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Nebraska 41.4366 -97.3565 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Nebraska 41.4366 -97.3565 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Nebraska 41.4366 -97.3565 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasmine Estates, Florida 28.2930 -82.6907 matched with DB +City: Jasmine Estates, state: Florida, Lat: 28.293, Lng: -82.6907, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, New York 41.9295 -73.9968 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, New York 41.9295 -73.9968 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, New York 41.9295 -73.9968 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Papillion, Nebraska 41.1511 -96.0665 matched with DB +City: Papillion, state: Nebraska, Lat: 41.1511, Lng: -96.0665, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Iowa 40.8071 -91.1247 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Fernando, California 34.2886 -118.4362 matched with DB +City: San Fernando, state: California, Lat: 34.2886, Lng: -118.4362, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Mississippi 33.5088 -88.4096 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Mississippi 33.5088 -88.4096 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Mississippi 33.5088 -88.4096 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Mississippi 33.5088 -88.4096 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Mississippi 33.5088 -88.4096 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Illinois 42.2891 -89.6346 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Illinois 42.2891 -89.6346 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Illinois 42.2891 -89.6346 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Illinois 42.2891 -89.6346 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnston, Iowa 41.6910 -93.7234 matched with DB +City: Johnston, state: Iowa, Lat: 41.691, Lng: -93.7234, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnston, Iowa 41.6910 -93.7234 matched with DB +City: Johnston, state: Rhode Island, Lat: 41.8274, Lng: -71.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemont, California 38.5478 -121.3553 matched with DB +City: Rosemont, state: California, Lat: 38.5478, Lng: -121.3553, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Elgin, Illinois 41.9906 -88.3135 matched with DB +City: South Elgin, state: Illinois, Lat: 41.9906, Lng: -88.3135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster Groves, Missouri 38.5866 -90.3544 matched with DB +City: Webster Groves, state: Missouri, Lat: 38.5866, Lng: -90.3544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willoughby, Ohio 41.6459 -81.4084 matched with DB +City: Willoughby, state: Ohio, Lat: 41.6459, Lng: -81.4084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farragut, Tennessee 35.8731 -84.1821 matched with DB +City: Farragut, state: Tennessee, Lat: 35.8731, Lng: -84.1821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Indiana 41.5483 -87.4588 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Indiana 41.5483 -87.4588 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Indiana 41.5483 -87.4588 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Indiana 41.5483 -87.4588 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain Hills, Arizona 33.6073 -111.7398 matched with DB +City: Fountain Hills, state: Arizona, Lat: 33.6073, Lng: -111.7398, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Munster, Indiana 41.5468 -87.5040 matched with DB +City: Munster, state: Indiana, Lat: 41.5468, Lng: -87.504, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Michigan 42.7401 -84.6354 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Michigan 42.7401 -84.6354 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patterson, California 37.4758 -121.1536 matched with DB +City: Patterson, state: California, Lat: 37.4758, Lng: -121.1536, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Patterson, California 37.4758 -121.1536 matched with DB +City: Patterson, state: New York, Lat: 41.4849, Lng: -73.5921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelbyville, Tennessee 35.4987 -86.4517 matched with DB +City: Shelbyville, state: Indiana, Lat: 39.5352, Lng: -85.7793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Tennessee 35.4987 -86.4517 matched with DB +City: Shelbyville, state: Kentucky, Lat: 38.2067, Lng: -85.2292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Tennessee 35.4987 -86.4517 matched with DB +City: Shelbyville, state: Tennessee, Lat: 35.4987, Lng: -86.4517, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muscatine, Iowa 41.4195 -91.0680 matched with DB +City: Muscatine, state: Iowa, Lat: 41.4195, Lng: -91.068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Indiana 39.7937 -85.7738 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Indiana 39.7937 -85.7738 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Indiana 39.7937 -85.7738 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Champlin, Minnesota 45.1702 -93.3903 matched with DB +City: Champlin, state: Minnesota, Lat: 45.1702, Lng: -93.3903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, South Carolina 33.9890 -81.2202 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, South Carolina 33.9890 -81.2202 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, South Carolina 33.9890 -81.2202 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, South Carolina 33.9890 -81.2202 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, South Carolina 33.9890 -81.2202 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseburg, Oregon 43.2231 -123.3520 matched with DB +City: Roseburg, state: Oregon, Lat: 43.2231, Lng: -123.352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kenmore, Washington 47.7516 -122.2489 matched with DB +City: Kenmore, state: New York, Lat: 42.9646, Lng: -78.8713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kenmore, Washington 47.7516 -122.2489 matched with DB +City: Kenmore, state: Washington, Lat: 47.7516, Lng: -122.2489, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fresno, Texas 29.5357 -95.4696 matched with DB +City: Fresno, state: Texas, Lat: 29.5357, Lng: -95.4696, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fresno, Texas 29.5357 -95.4696 matched with DB +City: Fresno, state: California, Lat: 36.783, Lng: -119.7939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain House, California 37.7673 -121.5449 matched with DB +City: Mountain House, state: California, Lat: 37.7673, Lng: -121.5449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville Beach, Florida 30.2782 -81.4045 matched with DB +City: Jacksonville Beach, state: Florida, Lat: 30.2782, Lng: -81.4045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Delaware 39.4450 -75.7183 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookings, South Dakota 44.3022 -96.7859 matched with DB +City: Brookings, state: South Dakota, Lat: 44.3022, Lng: -96.7859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nixa, Missouri 37.0453 -93.2959 matched with DB +City: Nixa, state: Missouri, Lat: 37.0453, Lng: -93.2959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watauga, Texas 32.8719 -97.2515 matched with DB +City: Watauga, state: Texas, Lat: 32.8719, Lng: -97.2515, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Texas 32.5370 -94.3515 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Texas 32.5370 -94.3515 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Texas 32.5370 -94.3515 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Texas 32.5370 -94.3515 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisle, Illinois 41.7918 -88.0888 matched with DB +City: Lisle, state: Illinois, Lat: 41.7918, Lng: -88.0888, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardner, Kansas 38.8122 -94.9275 matched with DB +City: Gardner, state: Massachusetts, Lat: 42.5845, Lng: -71.9868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gardner, Kansas 38.8122 -94.9275 matched with DB +City: Gardner, state: Kansas, Lat: 38.8122, Lng: -94.9275, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Minnesota 44.6572 -93.1687 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Minnesota 44.6572 -93.1687 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Minnesota 44.6572 -93.1687 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Minnesota 44.6572 -93.1687 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Minnesota 44.6572 -93.1687 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Minnesota 44.6572 -93.1687 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Griffin, Georgia 33.2418 -84.2748 matched with DB +City: Griffin, state: Georgia, Lat: 33.2418, Lng: -84.2748, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maple Heights, Ohio 41.4094 -81.5625 matched with DB +City: Maple Heights, state: Ohio, Lat: 41.4094, Lng: -81.5625, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Copiague, New York 40.6707 -73.3922 matched with DB +City: Copiague, state: New York, Lat: 40.6707, Lng: -73.3922, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Van Buren, Arkansas 35.4483 -94.3528 matched with DB +City: Van Buren, state: Arkansas, Lat: 35.4483, Lng: -94.3528, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Van Buren, Arkansas 35.4483 -94.3528 matched with DB +City: Van Buren, state: New York, Lat: 43.1211, Lng: -76.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Utah 41.1395 -112.0656 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maywood, Illinois 41.8798 -87.8442 matched with DB +City: Maywood, state: New Jersey, Lat: 40.9025, Lng: -74.0634, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, Illinois 41.8798 -87.8442 matched with DB +City: Maywood, state: Illinois, Lat: 41.8798, Lng: -87.8442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, Illinois 41.8798 -87.8442 matched with DB +City: Maywood, state: California, Lat: 33.9886, Lng: -118.1877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Springfield, Virginia 38.7771 -77.2268 matched with DB +City: West Springfield, state: Virginia, Lat: 38.7771, Lng: -77.2268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Springfield, Virginia 38.7771 -77.2268 matched with DB +City: West Springfield, state: Massachusetts, Lat: 42.1253, Lng: -72.6503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Springs, Wyoming 41.5947 -109.2209 matched with DB +City: Rock Springs, state: Wyoming, Lat: 41.5947, Lng: -109.2209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pottstown, Pennsylvania 40.2508 -75.6445 matched with DB +City: Pottstown, state: Pennsylvania, Lat: 40.2508, Lng: -75.6445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Platte, Nebraska 41.1263 -100.7641 matched with DB +City: North Platte, state: Nebraska, Lat: 41.1263, Lng: -100.7641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camp Springs, Maryland 38.8052 -76.9199 matched with DB +City: Camp Springs, state: Maryland, Lat: 38.8052, Lng: -76.9199, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linda, California 39.1241 -121.5421 matched with DB +City: Linda, state: California, Lat: 39.1241, Lng: -121.5421, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martha Lake, Washington 47.8479 -122.2327 matched with DB +City: Martha Lake, state: Washington, Lat: 47.8479, Lng: -122.2327, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cockeysville, Maryland 39.4804 -76.6294 matched with DB +City: Cockeysville, state: Maryland, Lat: 39.4804, Lng: -76.6294, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottage Lake, Washington 47.7466 -122.0755 matched with DB +City: Cottage Lake, state: Washington, Lat: 47.7466, Lng: -122.0755, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymore, Missouri 38.8029 -94.4583 matched with DB +City: Raymore, state: Missouri, Lat: 38.8029, Lng: -94.4583, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pickerington, Ohio 39.8890 -82.7678 matched with DB +City: Pickerington, state: Ohio, Lat: 39.889, Lng: -82.7678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union Hill-Novelty Hill, Washington 47.6788 -122.0284 matched with DB +City: Union Hill-Novelty Hill, state: Washington, Lat: 47.6788, Lng: -122.0284, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastmont, Washington 47.8968 -122.1818 matched with DB +City: Eastmont, state: Washington, Lat: 47.8968, Lng: -122.1818, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, California 37.6942 -122.1159 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, California 37.6942 -122.1159 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, California 37.6942 -122.1159 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, California 37.6942 -122.1159 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, California 37.6942 -122.1159 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, California 37.6942 -122.1159 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Brighton, Minnesota 45.0658 -93.2060 matched with DB +City: New Brighton, state: Minnesota, Lat: 45.0658, Lng: -93.206, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewater, Florida 28.9594 -80.9406 matched with DB +City: Edgewater, state: New Jersey, Lat: 40.8237, Lng: -73.974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Florida 28.9594 -80.9406 matched with DB +City: Edgewater, state: Florida, Lat: 28.9594, Lng: -80.9406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Florida 28.9594 -80.9406 matched with DB +City: Edgewater, state: Maryland, Lat: 38.9373, Lng: -76.5572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belton, Texas 31.0525 -97.4790 matched with DB +City: Belton, state: Missouri, Lat: 38.8192, Lng: -94.5335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belton, Texas 31.0525 -97.4790 matched with DB +City: Belton, state: Texas, Lat: 31.0525, Lng: -97.479, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easley, South Carolina 34.8188 -82.5827 matched with DB +City: Easley, state: South Carolina, Lat: 34.8188, Lng: -82.5827, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trotwood, Ohio 39.7926 -84.3165 matched with DB +City: Trotwood, state: Ohio, Lat: 39.7926, Lng: -84.3165, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, California 37.7618 -120.8468 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, California 37.7618 -120.8468 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty Triangle, Florida 29.0760 -82.2191 matched with DB +City: Liberty Triangle, state: Florida, Lat: 29.076, Lng: -82.2191, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chantilly, Virginia 38.8868 -77.4453 matched with DB +City: Chantilly, state: Virginia, Lat: 38.8868, Lng: -77.4453, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calabasas, California 34.1375 -118.6689 matched with DB +City: Calabasas, state: California, Lat: 34.1375, Lng: -118.6689, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cartersville, Georgia 34.1644 -84.8009 matched with DB +City: Cartersville, state: Georgia, Lat: 34.1644, Lng: -84.8009, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eustis, Florida 28.8563 -81.6771 matched with DB +City: Eustis, state: Florida, Lat: 28.8563, Lng: -81.6771, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bear, Delaware 39.6189 -75.6808 matched with DB +City: Bear, state: Delaware, Lat: 39.6189, Lng: -75.6808, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Virginia 37.3531 -77.4342 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Virginia 37.3531 -77.4342 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, California 34.0601 -117.4013 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, California 34.0601 -117.4013 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, California 34.0601 -117.4013 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, California 34.0601 -117.4013 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopewell, Virginia 37.2915 -77.2985 matched with DB +City: Hopewell, state: Virginia, Lat: 37.2915, Lng: -77.2985, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hopewell, Virginia 37.2915 -77.2985 matched with DB +City: Hopewell, state: Pennsylvania, Lat: 40.5906, Lng: -80.2731, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fernley, Nevada 39.5627 -119.1906 matched with DB +City: Fernley, state: Nevada, Lat: 39.5627, Lng: -119.1906, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glassboro, New Jersey 39.7014 -75.1113 matched with DB +City: Glassboro, state: New Jersey, Lat: 39.7014, Lng: -75.1113, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Ohio 41.2399 -81.4408 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Ohio 41.2399 -81.4408 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Ohio 41.2399 -81.4408 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Ohio 41.2399 -81.4408 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Ohio 41.2399 -81.4408 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylors, South Carolina 34.9157 -82.3124 matched with DB +City: Taylors, state: South Carolina, Lat: 34.9157, Lng: -82.3124, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Radcliff, Kentucky 37.8204 -85.9365 matched with DB +City: Radcliff, state: Kentucky, Lat: 37.8204, Lng: -85.9365, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown, Wisconsin 43.1893 -88.7285 matched with DB +City: Watertown, state: South Dakota, Lat: 44.9094, Lng: -97.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Wisconsin 43.1893 -88.7285 matched with DB +City: Watertown, state: New York, Lat: 43.9734, Lng: -75.9094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Wisconsin 43.1893 -88.7285 matched with DB +City: Watertown, state: Wisconsin, Lat: 43.1893, Lng: -88.7285, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brent, Florida 30.4727 -87.2495 matched with DB +City: Brent, state: Florida, Lat: 30.4727, Lng: -87.2495, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, Virginia 38.7332 -77.1149 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, Virginia 38.7332 -77.1149 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Searcy, Arkansas 35.2418 -91.7351 matched with DB +City: Searcy, state: Arkansas, Lat: 35.2418, Lng: -91.7351, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal, Minnesota 45.0377 -93.3599 matched with DB +City: Crystal, state: Minnesota, Lat: 45.0377, Lng: -93.3599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nocatee, Florida 30.0927 -81.4095 matched with DB +City: Nocatee, state: Florida, Lat: 30.0927, Lng: -81.4095, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Christiansburg, Virginia 37.1406 -80.4036 matched with DB +City: Christiansburg, state: Virginia, Lat: 37.1406, Lng: -80.4036, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laguna Beach, California 33.5455 -117.7613 matched with DB +City: Laguna Beach, state: California, Lat: 33.5455, Lng: -117.7613, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loves Park, Illinois 42.3364 -88.9975 matched with DB +City: Loves Park, state: Illinois, Lat: 42.3364, Lng: -88.9975, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blue Island, Illinois 41.6578 -87.6811 matched with DB +City: Blue Island, state: Illinois, Lat: 41.6578, Lng: -87.6811, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prairie Village, Kansas 38.9874 -94.6362 matched with DB +City: Prairie Village, state: Kansas, Lat: 38.9874, Lng: -94.6362, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keene, New Hampshire 42.9494 -72.2998 matched with DB +City: Keene, state: New Hampshire, Lat: 42.9494, Lng: -72.2998, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, New York 40.7266 -73.6447 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, New York 40.7266 -73.6447 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, New York 40.7266 -73.6447 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, New York 40.7266 -73.6447 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, New York 40.7266 -73.6447 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, New York 40.7266 -73.6447 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roselle, Illinois 41.9809 -88.0861 matched with DB +City: Roselle, state: New Jersey, Lat: 40.6527, Lng: -74.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roselle, Illinois 41.9809 -88.0861 matched with DB +City: Roselle, state: Illinois, Lat: 41.9809, Lng: -88.0861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Machesney Park, Illinois 42.3666 -89.0266 matched with DB +City: Machesney Park, state: Illinois, Lat: 42.3666, Lng: -89.0266, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Katy, Texas 29.7905 -95.8353 matched with DB +City: Katy, state: Texas, Lat: 29.7905, Lng: -95.8353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millbrae, California 37.5994 -122.4023 matched with DB +City: Millbrae, state: California, Lat: 37.5994, Lng: -122.4023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hialeah Gardens, Florida 25.8878 -80.3569 matched with DB +City: Hialeah Gardens, state: Florida, Lat: 25.8878, Lng: -80.3569, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corcoran, California 36.0841 -119.5613 matched with DB +City: Corcoran, state: California, Lat: 36.0841, Lng: -119.5613, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brambleton, Virginia 38.9803 -77.5323 matched with DB +City: Brambleton, state: Virginia, Lat: 38.9803, Lng: -77.5323, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pecan Grove, Texas 29.6235 -95.7330 matched with DB +City: Pecan Grove, state: Texas, Lat: 29.6235, Lng: -95.733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Valley, Nevada 39.6104 -119.7770 matched with DB +City: Sun Valley, state: Nevada, Lat: 39.6104, Lng: -119.777, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, Oklahoma 34.5408 -97.9215 matched with DB +City: Duncan, state: Oklahoma, Lat: 34.5408, Lng: -97.9215, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Villa Park, Illinois 41.8865 -87.9779 matched with DB +City: Villa Park, state: Illinois, Lat: 41.8865, Lng: -87.9779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Kansas 39.0277 -96.8508 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown, South Dakota 44.9094 -97.1532 matched with DB +City: Watertown, state: South Dakota, Lat: 44.9094, Lng: -97.1532, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, South Dakota 44.9094 -97.1532 matched with DB +City: Watertown, state: New York, Lat: 43.9734, Lng: -75.9094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, South Dakota 44.9094 -97.1532 matched with DB +City: Watertown, state: Wisconsin, Lat: 43.1893, Lng: -88.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazel Dell, Washington 45.6797 -122.6553 matched with DB +City: Hazel Dell, state: Washington, Lat: 45.6797, Lng: -122.6553, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anthem, Arizona 33.8560 -112.1168 matched with DB +City: Anthem, state: Arizona, Lat: 33.856, Lng: -112.1168, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Crossings, Florida 25.6708 -80.4018 matched with DB +City: The Crossings, state: Florida, Lat: 25.6708, Lng: -80.4018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Candler-McAfee, Georgia 33.7267 -84.2723 matched with DB +City: Candler-McAfee, state: Georgia, Lat: 33.7267, Lng: -84.2723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kapolei, Hawaii 21.3399 -158.0677 matched with DB +City: Kapolei, state: Hawaii, Lat: 21.3399, Lng: -158.0677, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allison Park, Pennsylvania 40.5730 -79.9603 matched with DB +City: Allison Park, state: Pennsylvania, Lat: 40.573, Lng: -79.9603, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Ohio 39.3270 -82.0987 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Ohio 39.3270 -82.0987 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Ohio 39.3270 -82.0987 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Ohio 39.3270 -82.0987 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Ohio 39.3270 -82.0987 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Plainfield, New Jersey 40.6209 -74.4386 matched with DB +City: North Plainfield, state: New Jersey, Lat: 40.6209, Lng: -74.4386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cudahy, California 33.9631 -118.1830 matched with DB +City: Cudahy, state: Wisconsin, Lat: 42.9467, Lng: -87.8641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cudahy, California 33.9631 -118.1830 matched with DB +City: Cudahy, state: California, Lat: 33.9631, Lng: -118.183, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East San Gabriel, California 34.1157 -118.0791 matched with DB +City: East San Gabriel, state: California, Lat: 34.1157, Lng: -118.0791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairhope, Alabama 30.5209 -87.8813 matched with DB +City: Fairhope, state: Alabama, Lat: 30.5209, Lng: -87.8813, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bonney Lake, Washington 47.1791 -122.1700 matched with DB +City: Bonney Lake, state: Washington, Lat: 47.1791, Lng: -122.17, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, New Jersey 40.7154 -74.3647 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, New Jersey 40.7154 -74.3647 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, New Jersey 40.7154 -74.3647 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Peoria, Illinois 40.6736 -89.5419 matched with DB +City: East Peoria, state: Illinois, Lat: 40.6736, Lng: -89.5419, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florida Ridge, Florida 27.5805 -80.3848 matched with DB +City: Florida Ridge, state: Florida, Lat: 27.5805, Lng: -80.3848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Horizon City, Texas 31.6799 -106.1903 matched with DB +City: Horizon City, state: Texas, Lat: 31.6799, Lng: -106.1903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, South Carolina 34.1947 -82.1542 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, South Carolina 34.1947 -82.1542 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, South Carolina 34.1947 -82.1542 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, South Carolina 34.1947 -82.1542 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cherry Hill, Virginia 38.5696 -77.2895 matched with DB +City: Cherry Hill, state: Virginia, Lat: 38.5696, Lng: -77.2895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cherry Hill, Virginia 38.5696 -77.2895 matched with DB +City: Cherry Hill, state: New Jersey, Lat: 39.9034, Lng: -74.9947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corinth, Texas 33.1434 -97.0682 matched with DB +City: Corinth, state: Mississippi, Lat: 34.9474, Lng: -88.5143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Corinth, Texas 33.1434 -97.0682 matched with DB +City: Corinth, state: Texas, Lat: 33.1434, Lng: -97.0682, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roselle, New Jersey 40.6527 -74.2599 matched with DB +City: Roselle, state: New Jersey, Lat: 40.6527, Lng: -74.2599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roselle, New Jersey 40.6527 -74.2599 matched with DB +City: Roselle, state: Illinois, Lat: 41.9809, Lng: -88.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coralville, Iowa 41.6990 -91.5967 matched with DB +City: Coralville, state: Iowa, Lat: 41.699, Lng: -91.5967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willowbrook, California 33.9209 -118.2356 matched with DB +City: Willowbrook, state: Illinois, Lat: 41.7641, Lng: -87.9454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Willowbrook, California 33.9209 -118.2356 matched with DB +City: Willowbrook, state: California, Lat: 33.9209, Lng: -118.2356, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Biddeford, Maine 43.4673 -70.4511 matched with DB +City: Biddeford, state: Maine, Lat: 43.4673, Lng: -70.4511, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Illinois 41.9497 -88.0895 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Illinois 41.9497 -88.0895 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Illinois 41.9497 -88.0895 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albertville, Alabama 34.2633 -86.2108 matched with DB +City: Albertville, state: Alabama, Lat: 34.2633, Lng: -86.2108, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho San Diego, California 32.7624 -116.9197 matched with DB +City: Rancho San Diego, state: California, Lat: 32.7624, Lng: -116.9197, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Porte, Indiana 41.6069 -86.7142 matched with DB +City: La Porte, state: Texas, Lat: 29.6689, Lng: -95.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Porte, Indiana 41.6069 -86.7142 matched with DB +City: La Porte, state: Indiana, Lat: 41.6069, Lng: -86.7142, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central Falls, Rhode Island 41.8901 -71.3934 matched with DB +City: Central Falls, state: Rhode Island, Lat: 41.8901, Lng: -71.3934, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesboro, Virginia 38.0674 -78.9014 matched with DB +City: Waynesboro, state: Pennsylvania, Lat: 39.7524, Lng: -77.5822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waynesboro, Virginia 38.0674 -78.9014 matched with DB +City: Waynesboro, state: Virginia, Lat: 38.0674, Lng: -78.9014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Acworth, Georgia 34.0566 -84.6716 matched with DB +City: Acworth, state: Georgia, Lat: 34.0566, Lng: -84.6716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DeBary, Florida 28.8815 -81.3240 matched with DB +City: DeBary, state: Florida, Lat: 28.8815, Lng: -81.324, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ruston, Louisiana 32.5328 -92.6363 matched with DB +City: Ruston, state: Louisiana, Lat: 32.5328, Lng: -92.6363, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brushy Creek, Texas 30.5128 -97.7386 matched with DB +City: Brushy Creek, state: Texas, Lat: 30.5128, Lng: -97.7386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Brook, Alabama 33.4871 -86.7400 matched with DB +City: Mountain Brook, state: Alabama, Lat: 33.4871, Lng: -86.74, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marina, California 36.6810 -121.7892 matched with DB +City: Marina, state: California, Lat: 36.681, Lng: -121.7892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kihei, Hawaii 20.7653 -156.4454 matched with DB +City: Kihei, state: Hawaii, Lat: 20.7653, Lng: -156.4454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Carson, California 33.8229 -118.2931 matched with DB +City: West Carson, state: California, Lat: 33.8229, Lng: -118.2931, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver Firs, Washington 47.8635 -122.1497 matched with DB +City: Silver Firs, state: Washington, Lat: 47.8635, Lng: -122.1497, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunny Isles Beach, Florida 25.9385 -80.1246 matched with DB +City: Sunny Isles Beach, state: Florida, Lat: 25.9385, Lng: -80.1246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chalmette, Louisiana 29.9438 -89.9660 matched with DB +City: Chalmette, state: Louisiana, Lat: 29.9438, Lng: -89.966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McNair, Virginia 38.9513 -77.4115 matched with DB +City: McNair, state: Virginia, Lat: 38.9513, Lng: -77.4115, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granite Bay, California 38.7601 -121.1714 matched with DB +City: Granite Bay, state: California, Lat: 38.7601, Lng: -121.1714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ensley, Florida 30.5259 -87.2733 matched with DB +City: Ensley, state: Florida, Lat: 30.5259, Lng: -87.2733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Valley, Minnesota 44.9901 -93.3591 matched with DB +City: Golden Valley, state: Minnesota, Lat: 44.9901, Lng: -93.3591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Rancho Dominguez, California 33.9057 -118.2683 matched with DB +City: West Rancho Dominguez, state: California, Lat: 33.9057, Lng: -118.2683, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: World Golf Village, Florida 29.9654 -81.4896 matched with DB +City: World Golf Village, state: Florida, Lat: 29.9654, Lng: -81.4896, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramona, California 33.0474 -116.8766 matched with DB +City: Ramona, state: California, Lat: 33.0474, Lng: -116.8766, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evans, Colorado 40.3660 -104.7390 matched with DB +City: Evans, state: Georgia, Lat: 33.5619, Lng: -82.1351, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evans, Colorado 40.3660 -104.7390 matched with DB +City: Evans, state: Colorado, Lat: 40.366, Lng: -104.739, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evans, Colorado 40.3660 -104.7390 matched with DB +City: Evans, state: New York, Lat: 42.6528, Lng: -79.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Indiana 38.3220 -85.7673 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Indiana 38.3220 -85.7673 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Indiana 38.3220 -85.7673 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montclair, Virginia 38.6111 -77.3400 matched with DB +City: Montclair, state: Virginia, Lat: 38.6111, Lng: -77.34, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montclair, Virginia 38.6111 -77.3400 matched with DB +City: Montclair, state: California, Lat: 34.0715, Lng: -117.6981, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montclair, Virginia 38.6111 -77.3400 matched with DB +City: Montclair, state: New Jersey, Lat: 40.8253, Lng: -74.2111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Puente Valley, California 34.0513 -117.9681 matched with DB +City: West Puente Valley, state: California, Lat: 34.0513, Lng: -117.9681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Minnesota 44.7318 -92.8538 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Minnesota 44.7318 -92.8538 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Minnesota 44.7318 -92.8538 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Ohio 39.5061 -84.7446 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Ohio 39.5061 -84.7446 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Ohio 39.5061 -84.7446 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Ohio 39.5061 -84.7446 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Ohio 39.5061 -84.7446 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lorton, Virginia 38.6983 -77.2164 matched with DB +City: Lorton, state: Virginia, Lat: 38.6983, Lng: -77.2164, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Ridge, Tennessee 34.9973 -85.2285 matched with DB +City: East Ridge, state: Tennessee, Lat: 34.9973, Lng: -85.2285, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carbondale, Illinois 37.7221 -89.2237 matched with DB +City: Carbondale, state: Pennsylvania, Lat: 41.5714, Lng: -75.5048, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carbondale, Illinois 37.7221 -89.2237 matched with DB +City: Carbondale, state: Illinois, Lat: 37.7221, Lng: -89.2237, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sapulpa, Oklahoma 36.0091 -96.1003 matched with DB +City: Sapulpa, state: Oklahoma, Lat: 36.0091, Lng: -96.1003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Alabama 33.5967 -85.8687 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Alabama 33.5967 -85.8687 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Alabama 33.5967 -85.8687 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Alabama 33.5967 -85.8687 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Alabama 33.5967 -85.8687 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chillicothe, Ohio 39.3393 -82.9939 matched with DB +City: Chillicothe, state: Missouri, Lat: 39.7953, Lng: -93.5499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chillicothe, Ohio 39.3393 -82.9939 matched with DB +City: Chillicothe, state: Ohio, Lat: 39.3393, Lng: -82.9939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Maine 43.4244 -70.7573 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Maine 43.4244 -70.7573 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Maine 43.4244 -70.7573 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Darien, Illinois 41.7448 -87.9822 matched with DB +City: Darien, state: Illinois, Lat: 41.7448, Lng: -87.9822, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valinda, California 34.0400 -117.9300 matched with DB +City: Valinda, state: California, Lat: 34.04, Lng: -117.93, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chambersburg, Pennsylvania 39.9315 -77.6556 matched with DB +City: Chambersburg, state: Pennsylvania, Lat: 39.9315, Lng: -77.6556, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Andrews, South Carolina 34.0510 -81.1057 matched with DB +City: St. Andrews, state: South Carolina, Lat: 34.051, Lng: -81.1057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pascagoula, Mississippi 30.3666 -88.5506 matched with DB +City: Pascagoula, state: Mississippi, Lat: 30.3666, Lng: -88.5506, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Salt Lake, Utah 40.8439 -111.9187 matched with DB +City: North Salt Lake, state: Utah, Lat: 40.8439, Lng: -111.9187, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsborough, New Jersey 40.5069 -74.6523 matched with DB +City: Hillsborough, state: North Carolina, Lat: 36.0679, Lng: -79.0991, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, New Jersey 40.5069 -74.6523 matched with DB +City: Hillsborough, state: California, Lat: 37.5572, Lng: -122.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, New Jersey 40.5069 -74.6523 matched with DB +City: Hillsborough, state: New Jersey, Lat: 40.4985, Lng: -74.674, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, New Jersey 40.5069 -74.6523 matched with DB +City: Hillsborough, state: New Jersey, Lat: 40.5069, Lng: -74.6523, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleton, Wisconsin 43.1064 -89.5059 matched with DB +City: Middleton, state: Wisconsin, Lat: 43.1064, Lng: -89.5059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middleton, Wisconsin 43.1064 -89.5059 matched with DB +City: Middleton, state: Idaho, Lat: 43.7113, Lng: -116.6157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middleton, Wisconsin 43.1064 -89.5059 matched with DB +City: Middleton, state: Massachusetts, Lat: 42.6043, Lng: -71.0164, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Castle, Pennsylvania 40.9956 -80.3458 matched with DB +City: New Castle, state: Pennsylvania, Lat: 40.9956, Lng: -80.3458, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Pennsylvania 40.9956 -80.3458 matched with DB +City: New Castle, state: Indiana, Lat: 39.9191, Lng: -85.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Pennsylvania 40.9956 -80.3458 matched with DB +City: New Castle, state: New York, Lat: 41.1841, Lng: -73.7721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Hueneme, California 34.1618 -119.2036 matched with DB +City: Port Hueneme, state: California, Lat: 34.1618, Lng: -119.2036, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Massapequa, New York 40.6676 -73.4706 matched with DB +City: Massapequa, state: New York, Lat: 40.6676, Lng: -73.4706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Michigan 43.5966 -84.7759 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Michigan 43.5966 -84.7759 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Michigan 43.5966 -84.7759 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Michigan 43.5966 -84.7759 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Michigan 43.5966 -84.7759 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Michigan 43.5966 -84.7759 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia Heights, Minnesota 45.0484 -93.2472 matched with DB +City: Columbia Heights, state: Minnesota, Lat: 45.0484, Lng: -93.2472, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayesville, Oregon 44.9793 -122.9738 matched with DB +City: Hayesville, state: Oregon, Lat: 44.9793, Lng: -122.9738, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parsippany, New Jersey 40.8645 -74.4135 matched with DB +City: Parsippany, state: New Jersey, Lat: 40.8645, Lng: -74.4135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Klamath Falls, Oregon 42.2195 -121.7754 matched with DB +City: Klamath Falls, state: Oregon, Lat: 42.2195, Lng: -121.7754, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Indiana 39.7601 -86.3916 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Indiana 39.7601 -86.3916 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Langley Park, Maryland 38.9897 -76.9808 matched with DB +City: Langley Park, state: Maryland, Lat: 38.9897, Lng: -76.9808, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverdale, Washington 47.6663 -122.6828 matched with DB +City: Silverdale, state: Washington, Lat: 47.6663, Lng: -122.6828, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sedalia, Missouri 38.7059 -93.2340 matched with DB +City: Sedalia, state: Missouri, Lat: 38.7059, Lng: -93.234, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, California 32.8560 -116.9040 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, California 32.8560 -116.9040 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, California 32.8560 -116.9040 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selden, New York 40.8714 -73.0466 matched with DB +City: Selden, state: New York, Lat: 40.8714, Lng: -73.0466, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Euclid, Ohio 41.5240 -81.5245 matched with DB +City: South Euclid, state: Ohio, Lat: 41.524, Lng: -81.5245, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Birmingham, Michigan 42.5446 -83.2166 matched with DB +City: Birmingham, state: Michigan, Lat: 42.5446, Lng: -83.2166, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Birmingham, Michigan 42.5446 -83.2166 matched with DB +City: Birmingham, state: Alabama, Lat: 33.5279, Lng: -86.7971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, North Carolina 35.2904 -81.5451 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yucca Valley, California 34.1234 -116.4216 matched with DB +City: Yucca Valley, state: California, Lat: 34.1234, Lng: -116.4216, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duarte, California 34.1610 -117.9504 matched with DB +City: Duarte, state: California, Lat: 34.161, Lng: -117.9504, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Del City, Oklahoma 35.4483 -97.4408 matched with DB +City: Del City, state: Oklahoma, Lat: 35.4483, Lng: -97.4408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gallup, New Mexico 35.5182 -108.7431 matched with DB +City: Gallup, state: New Mexico, Lat: 35.5182, Lng: -108.7431, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: American Canyon, California 38.1796 -122.2583 matched with DB +City: American Canyon, state: California, Lat: 38.1796, Lng: -122.2583, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Minnesota 45.0375 -93.3869 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alliance, Ohio 40.9107 -81.1189 matched with DB +City: Alliance, state: Ohio, Lat: 40.9107, Lng: -81.1189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tukwila, Washington 47.4750 -122.2728 matched with DB +City: Tukwila, state: Washington, Lat: 47.475, Lng: -122.2728, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulshear, Texas 29.6930 -95.8804 matched with DB +City: Fulshear, state: Texas, Lat: 29.693, Lng: -95.8804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky River, Ohio 41.4702 -81.8525 matched with DB +City: Rocky River, state: Ohio, Lat: 41.4702, Lng: -81.8525, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mililani Mauka, Hawaii 21.4756 -157.9948 matched with DB +City: Mililani Mauka, state: Hawaii, Lat: 21.4756, Lng: -157.9948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Kentucky 38.4592 -82.6448 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kentucky 38.4592 -82.6448 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kentucky 38.4592 -82.6448 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kentucky 38.4592 -82.6448 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kentucky 38.4592 -82.6448 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kentucky 38.4592 -82.6448 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Payson, Utah 40.0355 -111.7390 matched with DB +City: Payson, state: Utah, Lat: 40.0355, Lng: -111.739, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Payson, Utah 40.0355 -111.7390 matched with DB +City: Payson, state: Arizona, Lat: 34.2433, Lng: -111.3195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lino Lakes, Minnesota 45.1679 -93.0830 matched with DB +City: Lino Lakes, state: Minnesota, Lat: 45.1679, Lng: -93.083, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Celina, Texas 33.3154 -96.7941 matched with DB +City: Celina, state: Ohio, Lat: 40.555, Lng: -84.5626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Celina, Texas 33.3154 -96.7941 matched with DB +City: Celina, state: Texas, Lat: 33.3154, Lng: -96.7941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holiday, Florida 28.1864 -82.7429 matched with DB +City: Holiday, state: Florida, Lat: 28.1864, Lng: -82.7429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvey, Louisiana 29.8876 -90.0666 matched with DB +City: Harvey, state: Illinois, Lat: 41.6076, Lng: -87.652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harvey, Louisiana 29.8876 -90.0666 matched with DB +City: Harvey, state: Louisiana, Lat: 29.8876, Lng: -90.0666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dickinson, Texas 29.4548 -95.0589 matched with DB +City: Dickinson, state: North Dakota, Lat: 46.8918, Lng: -102.7925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dickinson, Texas 29.4548 -95.0589 matched with DB +City: Dickinson, state: Texas, Lat: 29.4548, Lng: -95.0589, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Secaucus, New Jersey 40.7810 -74.0659 matched with DB +City: Secaucus, state: New Jersey, Lat: 40.781, Lng: -74.0659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ozark, Missouri 37.0365 -93.2158 matched with DB +City: Ozark, state: Alabama, Lat: 31.4508, Lng: -85.6473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ozark, Missouri 37.0365 -93.2158 matched with DB +City: Ozark, state: Missouri, Lat: 37.0365, Lng: -93.2158, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Patchogue, New York 40.7704 -72.9817 matched with DB +City: East Patchogue, state: New York, Lat: 40.7704, Lng: -72.9817, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio Rico, Arizona 31.4957 -110.9885 matched with DB +City: Rio Rico, state: Arizona, Lat: 31.4957, Lng: -110.9885, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Four Square Mile, Colorado 39.6808 -104.8880 matched with DB +City: Four Square Mile, state: Colorado, Lat: 39.6808, Lng: -104.888, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Oregon 42.1905 -122.6992 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oregon 42.1905 -122.6992 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oregon 42.1905 -122.6992 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oregon 42.1905 -122.6992 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oregon 42.1905 -122.6992 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oregon 42.1905 -122.6992 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Illinois 41.8833 -88.3242 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Illinois 41.8833 -88.3242 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Prairie, Wisconsin 42.5266 -87.8895 matched with DB +City: Pleasant Prairie, state: Wisconsin, Lat: 42.5266, Lng: -87.8895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Indiana 38.9476 -85.8911 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Indiana 38.9476 -85.8911 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mukilteo, Washington 47.9096 -122.3035 matched with DB +City: Mukilteo, state: Washington, Lat: 47.9096, Lng: -122.3035, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountlake Terrace, Washington 47.7921 -122.3077 matched with DB +City: Mountlake Terrace, state: Washington, Lat: 47.7921, Lng: -122.3077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Lake Tahoe, California 38.9393 -119.9828 matched with DB +City: South Lake Tahoe, state: California, Lat: 38.9393, Lng: -119.9828, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindenwold, New Jersey 39.8173 -74.9898 matched with DB +City: Lindenwold, state: New Jersey, Lat: 39.8173, Lng: -74.9898, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vicksburg, Mississippi 32.3173 -90.8868 matched with DB +City: Vicksburg, state: Mississippi, Lat: 32.3173, Lng: -90.8868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winter Gardens, California 32.8376 -116.9268 matched with DB +City: Winter Gardens, state: California, Lat: 32.8376, Lng: -116.9268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Holland, Illinois 41.5977 -87.6022 matched with DB +City: South Holland, state: Illinois, Lat: 41.5977, Lng: -87.6022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sulphur, Louisiana 30.2286 -93.3566 matched with DB +City: Sulphur, state: Louisiana, Lat: 30.2286, Lng: -93.3566, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dolton, Illinois 41.6284 -87.5979 matched with DB +City: Dolton, state: Illinois, Lat: 41.6284, Lng: -87.5979, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clemmons, North Carolina 36.0319 -80.3861 matched with DB +City: Clemmons, state: North Carolina, Lat: 36.0319, Lng: -80.3861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Georgia 32.4720 -83.7283 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkville, Illinois 41.6563 -88.4507 matched with DB +City: Yorkville, state: Illinois, Lat: 41.6563, Lng: -88.4507, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Pennsylvania 40.3690 -79.9669 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Pennsylvania 40.3690 -79.9669 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmwood Park, New Jersey 40.9049 -74.1201 matched with DB +City: Elmwood Park, state: New Jersey, Lat: 40.9049, Lng: -74.1201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elmwood Park, New Jersey 40.9049 -74.1201 matched with DB +City: Elmwood Park, state: Illinois, Lat: 41.9225, Lng: -87.8163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Pensacola, Florida 30.4263 -87.2679 matched with DB +City: West Pensacola, state: Florida, Lat: 30.4263, Lng: -87.2679, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrboro, North Carolina 35.9259 -79.0878 matched with DB +City: Carrboro, state: North Carolina, Lat: 35.9259, Lng: -79.0878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Suwanee, Georgia 34.0508 -84.0686 matched with DB +City: Suwanee, state: Georgia, Lat: 34.0508, Lng: -84.0686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lealman, Florida 27.8197 -82.6847 matched with DB +City: Lealman, state: Florida, Lat: 27.8197, Lng: -82.6847, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rose Hill, Virginia 38.7872 -77.1085 matched with DB +City: Rose Hill, state: Virginia, Lat: 38.7872, Lng: -77.1085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milwaukie, Oregon 45.4445 -122.6219 matched with DB +City: Milwaukie, state: Oregon, Lat: 45.4445, Lng: -122.6219, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayou Cane, Louisiana 29.6243 -90.7510 matched with DB +City: Bayou Cane, state: Louisiana, Lat: 29.6243, Lng: -90.751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Foley, Alabama 30.3983 -87.6650 matched with DB +City: Foley, state: Alabama, Lat: 30.3983, Lng: -87.665, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hays, Kansas 38.8821 -99.3221 matched with DB +City: Hays, state: Kansas, Lat: 38.8821, Lng: -99.3221, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tullahoma, Tennessee 35.3721 -86.2172 matched with DB +City: Tullahoma, state: Tennessee, Lat: 35.3721, Lng: -86.2172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardner, Massachusetts 42.5845 -71.9868 matched with DB +City: Gardner, state: Massachusetts, Lat: 42.5845, Lng: -71.9868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gardner, Massachusetts 42.5845 -71.9868 matched with DB +City: Gardner, state: Kansas, Lat: 38.8122, Lng: -94.9275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bellmore, New York 40.6904 -73.5390 matched with DB +City: North Bellmore, state: New York, Lat: 40.6904, Lng: -73.539, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Ogden, Utah 41.3123 -111.9584 matched with DB +City: North Ogden, state: Utah, Lat: 41.3123, Lng: -111.9584, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Makakilo, Hawaii 21.3591 -158.0813 matched with DB +City: Makakilo, state: Hawaii, Lat: 21.3591, Lng: -158.0813, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Forest, Illinois 41.4817 -87.6867 matched with DB +City: Park Forest, state: Illinois, Lat: 41.4817, Lng: -87.6867, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena, Alabama 33.2837 -86.8791 matched with DB +City: Helena, state: Alabama, Lat: 33.2837, Lng: -86.8791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Helena, Alabama 33.2837 -86.8791 matched with DB +City: Helena, state: Montana, Lat: 46.5965, Lng: -112.0202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wade Hampton, South Carolina 34.8821 -82.3336 matched with DB +City: Wade Hampton, state: South Carolina, Lat: 34.8821, Lng: -82.3336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stephenville, Texas 32.2147 -98.2205 matched with DB +City: Stephenville, state: Texas, Lat: 32.2147, Lng: -98.2205, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willmar, Minnesota 45.1216 -95.0569 matched with DB +City: Willmar, state: Minnesota, Lat: 45.1216, Lng: -95.0569, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrick, New York 40.6515 -73.5535 matched with DB +City: Merrick, state: New York, Lat: 40.6515, Lng: -73.5535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Ohio 39.4254 -84.2133 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mineola, New York 40.7470 -73.6394 matched with DB +City: Mineola, state: New York, Lat: 40.747, Lng: -73.6394, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Moline, Illinois 41.5199 -90.3879 matched with DB +City: East Moline, state: Illinois, Lat: 41.5199, Lng: -90.3879, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Valley, Arizona 31.8393 -111.0009 matched with DB +City: Green Valley, state: Arizona, Lat: 31.8393, Lng: -111.0009, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Green Valley, Arizona 31.8393 -111.0009 matched with DB +City: Green Valley, state: Maryland, Lat: 39.3414, Lng: -77.24, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Colorado 39.9710 -105.1441 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Colorado 39.9710 -105.1441 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Colorado 39.9710 -105.1441 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Walton Beach, Florida 30.4255 -86.6222 matched with DB +City: Fort Walton Beach, state: Florida, Lat: 30.4255, Lng: -86.6222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Five Corners, Washington 45.6883 -122.5738 matched with DB +City: Five Corners, state: Washington, Lat: 45.6883, Lng: -122.5738, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snellville, Georgia 33.8562 -84.0038 matched with DB +City: Snellville, state: Georgia, Lat: 33.8562, Lng: -84.0038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Battle Ground, Washington 45.7766 -122.5413 matched with DB +City: Battle Ground, state: Washington, Lat: 45.7766, Lng: -122.5413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Germantown, Wisconsin 43.2343 -88.1217 matched with DB +City: Germantown, state: Wisconsin, Lat: 43.2343, Lng: -88.1217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Wisconsin 43.2343 -88.1217 matched with DB +City: Germantown, state: Maryland, Lat: 39.1755, Lng: -77.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Wisconsin 43.2343 -88.1217 matched with DB +City: Germantown, state: Tennessee, Lat: 35.0829, Lng: -89.7824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murphy, Texas 33.0186 -96.6105 matched with DB +City: Murphy, state: Texas, Lat: 33.0186, Lng: -96.6105, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hyattsville, Maryland 38.9613 -76.9548 matched with DB +City: Hyattsville, state: Maryland, Lat: 38.9613, Lng: -76.9548, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Pennsylvania 40.2000 -77.2034 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arnold, Missouri 38.4297 -90.3733 matched with DB +City: Arnold, state: Maryland, Lat: 39.0437, Lng: -76.4974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arnold, Missouri 38.4297 -90.3733 matched with DB +City: Arnold, state: Missouri, Lat: 38.4297, Lng: -90.3733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West St. Paul, Minnesota 44.9018 -93.0858 matched with DB +City: West St. Paul, state: Minnesota, Lat: 44.9018, Lng: -93.0858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murrysville, Pennsylvania 40.4456 -79.6554 matched with DB +City: Murrysville, state: Pennsylvania, Lat: 40.4456, Lng: -79.6554, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Washington 47.3667 -122.1045 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Washington 47.3667 -122.1045 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Washington 47.3667 -122.1045 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Washington 47.3667 -122.1045 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Washington 47.3667 -122.1045 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockport, New York 43.1698 -78.6956 matched with DB +City: Lockport, state: New York, Lat: 43.1698, Lng: -78.6956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockport, New York 43.1698 -78.6956 matched with DB +City: Lockport, state: Illinois, Lat: 41.5906, Lng: -88.0293, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grayslake, Illinois 42.3405 -88.0338 matched with DB +City: Grayslake, state: Illinois, Lat: 42.3405, Lng: -88.0338, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Creek, Washington 47.8631 -122.2037 matched with DB +City: Mill Creek, state: Washington, Lat: 47.8631, Lng: -122.2037, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryant, Arkansas 34.6152 -92.4914 matched with DB +City: Bryant, state: Arkansas, Lat: 34.6152, Lng: -92.4914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanahan, South Carolina 32.9302 -80.0027 matched with DB +City: Hanahan, state: South Carolina, Lat: 32.9302, Lng: -80.0027, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. John, Indiana 41.4429 -87.4697 matched with DB +City: St. John, state: Indiana, Lat: 41.4429, Lng: -87.4697, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ennis, Texas 32.3254 -96.6347 matched with DB +City: Ennis, state: Texas, Lat: 32.3254, Lng: -96.6347, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parma Heights, Ohio 41.3865 -81.7637 matched with DB +City: Parma Heights, state: Ohio, Lat: 41.3865, Lng: -81.7637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lennox, California 33.9380 -118.3586 matched with DB +City: Lennox, state: California, Lat: 33.938, Lng: -118.3586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Milwaukee, Wisconsin 42.9120 -87.8627 matched with DB +City: South Milwaukee, state: Wisconsin, Lat: 42.912, Lng: -87.8627, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marquette, Michigan 46.5440 -87.4082 matched with DB +City: Marquette, state: Michigan, Lat: 46.544, Lng: -87.4082, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waxhaw, North Carolina 34.9363 -80.7439 matched with DB +City: Waxhaw, state: North Carolina, Lat: 34.9363, Lng: -80.7439, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lomita, California 33.7933 -118.3175 matched with DB +City: Lomita, state: California, Lat: 33.7933, Lng: -118.3175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mesquite, Nevada 36.8032 -114.1330 matched with DB +City: Mesquite, state: Nevada, Lat: 36.8032, Lng: -114.133, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mesquite, Nevada 36.8032 -114.1330 matched with DB +City: Mesquite, state: Texas, Lat: 32.7602, Lng: -96.5865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosamond, California 34.8658 -118.2155 matched with DB +City: Rosamond, state: California, Lat: 34.8658, Lng: -118.2155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Illinois 41.7237 -88.3633 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Illinois 41.7237 -88.3633 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Illinois 41.7237 -88.3633 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Illinois 41.7237 -88.3633 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Illinois 41.7237 -88.3633 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Illinois 41.7237 -88.3633 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, Oklahoma 35.5071 -97.6418 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, Oklahoma 35.5071 -97.6418 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburg, Kansas 37.4129 -94.6985 matched with DB +City: Pittsburg, state: Kansas, Lat: 37.4129, Lng: -94.6985, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pittsburg, Kansas 37.4129 -94.6985 matched with DB +City: Pittsburg, state: California, Lat: 38.0182, Lng: -121.8965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hurricane, Utah 37.1487 -113.3517 matched with DB +City: Hurricane, state: Utah, Lat: 37.1487, Lng: -113.3517, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, Michigan 41.8994 -84.0447 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South St. Paul, Minnesota 44.8877 -93.0411 matched with DB +City: South St. Paul, state: Minnesota, Lat: 44.8877, Lng: -93.0411, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nanuet, New York 41.0957 -74.0155 matched with DB +City: Nanuet, state: New York, Lat: 41.0957, Lng: -74.0155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mead Valley, California 33.8333 -117.2852 matched with DB +City: Mead Valley, state: California, Lat: 33.8333, Lng: -117.2852, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasantville, New Jersey 39.3900 -74.5169 matched with DB +City: Pleasantville, state: New Jersey, Lat: 39.39, Lng: -74.5169, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Libertyville, Illinois 42.2870 -87.9670 matched with DB +City: Libertyville, state: Illinois, Lat: 42.287, Lng: -87.967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Lake, Minnesota 45.2536 -92.9582 matched with DB +City: Forest Lake, state: Minnesota, Lat: 45.2536, Lng: -92.9582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bothell West, Washington 47.8056 -122.2401 matched with DB +City: Bothell West, state: Washington, Lat: 47.8056, Lng: -122.2401, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mustang, Oklahoma 35.3917 -97.7246 matched with DB +City: Mustang, state: Oklahoma, Lat: 35.3917, Lng: -97.7246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northfield, Minnesota 44.4550 -93.1698 matched with DB +City: Northfield, state: Minnesota, Lat: 44.455, Lng: -93.1698, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elko, Nevada 40.8381 -115.7678 matched with DB +City: Elko, state: Nevada, Lat: 40.8381, Lng: -115.7678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stevenson Ranch, California 34.3894 -118.5883 matched with DB +City: Stevenson Ranch, state: California, Lat: 34.3894, Lng: -118.5883, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden, Colorado 39.7406 -105.2118 matched with DB +City: Golden, state: Colorado, Lat: 39.7406, Lng: -105.2118, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Otsego, Minnesota 45.2660 -93.6201 matched with DB +City: Otsego, state: Minnesota, Lat: 45.266, Lng: -93.6201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saco, Maine 43.5390 -70.4624 matched with DB +City: Saco, state: Maine, Lat: 43.539, Lng: -70.4624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piqua, Ohio 40.1506 -84.2441 matched with DB +City: Piqua, state: Ohio, Lat: 40.1506, Lng: -84.2441, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Imperial, California 32.8390 -115.5720 matched with DB +City: Imperial, state: California, Lat: 32.839, Lng: -115.572, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hauppauge, New York 40.8211 -73.2109 matched with DB +City: Hauppauge, state: New York, Lat: 40.8211, Lng: -73.2109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Michigan 41.9155 -83.3849 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Colorado 38.4689 -107.8590 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Hempstead, New York 40.6959 -73.6507 matched with DB +City: West Hempstead, state: New York, Lat: 40.6959, Lng: -73.6507, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Liberty, Iowa 41.7438 -91.6112 matched with DB +City: North Liberty, state: Iowa, Lat: 41.7438, Lng: -91.6112, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Old Jamestown, Missouri 38.8394 -90.2847 matched with DB +City: Old Jamestown, state: Missouri, Lat: 38.8394, Lng: -90.2847, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Painesville, Ohio 41.7240 -81.2536 matched with DB +City: Painesville, state: Ohio, Lat: 41.724, Lng: -81.2536, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Cañada Flintridge, California 34.2097 -118.2002 matched with DB +City: La Canada Flintridge, state: California, Lat: 34.2097, Lng: -118.2002, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Ohio 40.2891 -84.1667 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Oregon 42.1980 -121.7248 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westbrook, Maine 43.6954 -70.3539 matched with DB +City: Westbrook, state: Maine, Lat: 43.6954, Lng: -70.3539, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Amityville, New York 40.7005 -73.4119 matched with DB +City: North Amityville, state: New York, Lat: 40.7005, Lng: -73.4119, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salmon Creek, Washington 45.7099 -122.6632 matched with DB +City: Salmon Creek, state: Washington, Lat: 45.7099, Lng: -122.6632, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynbrook, New York 40.6579 -73.6742 matched with DB +City: Lynbrook, state: New York, Lat: 40.6579, Lng: -73.6742, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Northport, New York 40.8791 -73.3233 matched with DB +City: East Northport, state: New York, Lat: 40.8791, Lng: -73.3233, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, Oregon 45.3594 -122.8427 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, Oregon 45.3594 -122.8427 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion Oaks, Florida 29.0011 -82.1953 matched with DB +City: Marion Oaks, state: Florida, Lat: 29.0011, Lng: -82.1953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oroville, California 39.4999 -121.5634 matched with DB +City: Oroville, state: California, Lat: 39.4999, Lng: -121.5634, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Washington 48.1701 -122.1442 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Washington 48.1701 -122.1442 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Washington 48.1701 -122.1442 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Washington 48.1701 -122.1442 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Washington 48.1701 -122.1442 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Hemet, California 33.7301 -116.9410 matched with DB +City: East Hemet, state: California, Lat: 33.7301, Lng: -116.941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, Illinois 41.4892 -87.8363 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Illinois 41.4892 -87.8363 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Illinois 41.4892 -87.8363 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Burlington, Vermont 44.4622 -73.2202 matched with DB +City: South Burlington, state: Vermont, Lat: 44.4622, Lng: -73.2202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palisades Park, New Jersey 40.8472 -73.9966 matched with DB +City: Palisades Park, state: New Jersey, Lat: 40.8472, Lng: -73.9966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ypsilanti, Michigan 42.2440 -83.6208 matched with DB +City: Ypsilanti, state: Michigan, Lat: 42.244, Lng: -83.6208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shafter, California 35.4794 -119.2013 matched with DB +City: Shafter, state: California, Lat: 35.4794, Lng: -119.2013, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Florida 30.4169 -87.0229 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arbutus, Maryland 39.2428 -76.6922 matched with DB +City: Arbutus, state: Maryland, Lat: 39.2428, Lng: -76.6922, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Texas 27.8942 -97.3278 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Texas 27.8942 -97.3278 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Texas 27.8942 -97.3278 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Texas 27.8942 -97.3278 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mayfield Heights, Ohio 41.5174 -81.4534 matched with DB +City: Mayfield Heights, state: Ohio, Lat: 41.5174, Lng: -81.4534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, New Jersey 40.7967 -74.4772 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, New Jersey 40.7967 -74.4772 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, Texas 34.1911 -101.7235 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, Texas 34.1911 -101.7235 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Culpeper, Virginia 38.4704 -78.0001 matched with DB +City: Culpeper, state: Virginia, Lat: 38.4704, Lng: -78.0001, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, Maryland 39.5796 -77.0067 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Maryland 39.5796 -77.0067 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Maryland 39.5796 -77.0067 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buckhall, Virginia 38.7239 -77.4476 matched with DB +City: Buckhall, state: Virginia, Lat: 38.7239, Lng: -77.4476, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Crescenta-Montrose, California 34.2322 -118.2353 matched with DB +City: La Crescenta-Montrose, state: California, Lat: 34.2322, Lng: -118.2353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Agoura Hills, California 34.1510 -118.7609 matched with DB +City: Agoura Hills, state: California, Lat: 34.151, Lng: -118.7609, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, Maryland 39.3266 -76.5084 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, Maryland 39.3266 -76.5084 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Casa de Oro-Mount Helix, California 32.7640 -116.9688 matched with DB +City: Casa de Oro-Mount Helix, state: California, Lat: 32.764, Lng: -116.9688, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadowbrook, Virginia 37.4301 -77.4740 matched with DB +City: Meadowbrook, state: Virginia, Lat: 37.4301, Lng: -77.474, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meadowbrook, Virginia 37.4301 -77.4740 matched with DB +City: Meadowbrook, state: Alabama, Lat: 33.3935, Lng: -86.7041, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehall, Ohio 39.9682 -82.8833 matched with DB +City: Whitehall, state: Ohio, Lat: 39.9682, Lng: -82.8833, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Whitehall, Ohio 39.9682 -82.8833 matched with DB +City: Whitehall, state: Pennsylvania, Lat: 40.6571, Lng: -75.5046, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvey, Illinois 41.6076 -87.6520 matched with DB +City: Harvey, state: Illinois, Lat: 41.6076, Lng: -87.652, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harvey, Illinois 41.6076 -87.6520 matched with DB +City: Harvey, state: Louisiana, Lat: 29.8876, Lng: -90.0666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, California 37.8897 -122.3018 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, California 37.8897 -122.3018 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, California 37.8897 -122.3018 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, California 37.8897 -122.3018 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rolla, Missouri 37.9459 -91.7607 matched with DB +City: Rolla, state: Missouri, Lat: 37.9459, Lng: -91.7607, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howard, Wisconsin 44.5703 -88.0928 matched with DB +City: Howard, state: Wisconsin, Lat: 44.5703, Lng: -88.0928, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Iowa 41.6483 -93.4783 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Iowa 41.6483 -93.4783 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Iowa 41.6483 -93.4783 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Angeles, Washington 48.1141 -123.4565 matched with DB +City: Port Angeles, state: Washington, Lat: 48.1141, Lng: -123.4565, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Park, Ohio 39.2861 -84.5258 matched with DB +City: Forest Park, state: Ohio, Lat: 39.2861, Lng: -84.5258, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Ohio 39.2861 -84.5258 matched with DB +City: Forest Park, state: Illinois, Lat: 41.8683, Lng: -87.8157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Ohio 39.2861 -84.5258 matched with DB +City: Forest Park, state: Georgia, Lat: 33.6209, Lng: -84.359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sand Springs, Oklahoma 36.1353 -96.1283 matched with DB +City: Sand Springs, state: Oklahoma, Lat: 36.1353, Lng: -96.1283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrifield, Virginia 38.8731 -77.2426 matched with DB +City: Merrifield, state: Virginia, Lat: 38.8731, Lng: -77.2426, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Affton, Missouri 38.5499 -90.3264 matched with DB +City: Affton, state: Missouri, Lat: 38.5499, Lng: -90.3264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plattsburgh, New York 44.6951 -73.4563 matched with DB +City: Plattsburgh, state: New York, Lat: 44.6951, Lng: -73.4563, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oregon, Ohio 41.6524 -83.4321 matched with DB +City: Oregon, state: Ohio, Lat: 41.6524, Lng: -83.4321, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oregon, Ohio 41.6524 -83.4321 matched with DB +City: Oregon, state: Wisconsin, Lat: 42.9253, Lng: -89.3892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hunters Creek, Florida 28.3610 -81.4358 matched with DB +City: Hunters Creek, state: Florida, Lat: 28.361, Lng: -81.4358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mokena, Illinois 41.5327 -87.8781 matched with DB +City: Mokena, state: Illinois, Lat: 41.5327, Lng: -87.8781, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crest Hill, Illinois 41.5723 -88.1124 matched with DB +City: Crest Hill, state: Illinois, Lat: 41.5723, Lng: -88.1124, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miamisburg, Ohio 39.6322 -84.2724 matched with DB +City: Miamisburg, state: Ohio, Lat: 39.6322, Lng: -84.2724, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homewood, Illinois 41.5591 -87.6610 matched with DB +City: Homewood, state: Illinois, Lat: 41.5591, Lng: -87.661, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Homewood, Illinois 41.5591 -87.6610 matched with DB +City: Homewood, state: Alabama, Lat: 33.4619, Lng: -86.809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broadview Heights, Ohio 41.3196 -81.6779 matched with DB +City: Broadview Heights, state: Ohio, Lat: 41.3196, Lng: -81.6779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincolnia, Virginia 38.8158 -77.1543 matched with DB +City: Lincolnia, state: Virginia, Lat: 38.8158, Lng: -77.1543, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, Texas 26.1810 -98.1177 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, Texas 26.1810 -98.1177 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Universal City, Texas 29.5521 -98.3074 matched with DB +City: Universal City, state: Texas, Lat: 29.5521, Lng: -98.3074, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Valley, Florida 30.2011 -81.3948 matched with DB +City: Palm Valley, state: Florida, Lat: 30.2011, Lng: -81.3948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lackawanna, New York 42.8182 -78.8325 matched with DB +City: Lackawanna, state: New York, Lat: 42.8182, Lng: -78.8325, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nogales, Arizona 31.3624 -110.9336 matched with DB +City: Nogales, state: Arizona, Lat: 31.3624, Lng: -110.9336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Zurich, Illinois 42.1956 -88.0870 matched with DB +City: Lake Zurich, state: Illinois, Lat: 42.1956, Lng: -88.087, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen Park, Illinois 41.7213 -87.7013 matched with DB +City: Evergreen Park, state: Illinois, Lat: 41.7213, Lng: -87.7013, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremore, Oklahoma 36.3146 -95.6095 matched with DB +City: Claremore, state: Oklahoma, Lat: 36.3146, Lng: -95.6095, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beltsville, Maryland 39.0394 -76.9211 matched with DB +City: Beltsville, state: Maryland, Lat: 39.0394, Lng: -76.9211, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kinston, North Carolina 35.2747 -77.5939 matched with DB +City: Kinston, state: North Carolina, Lat: 35.2747, Lng: -77.5939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South El Monte, California 34.0493 -118.0484 matched with DB +City: South El Monte, state: California, Lat: 34.0493, Lng: -118.0484, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelbyville, Indiana 39.5352 -85.7793 matched with DB +City: Shelbyville, state: Indiana, Lat: 39.5352, Lng: -85.7793, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Indiana 39.5352 -85.7793 matched with DB +City: Shelbyville, state: Kentucky, Lat: 38.2067, Lng: -85.2292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Indiana 39.5352 -85.7793 matched with DB +City: Shelbyville, state: Tennessee, Lat: 35.4987, Lng: -86.4517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Washington 47.8595 -121.9851 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Park, Georgia 33.6209 -84.3590 matched with DB +City: Forest Park, state: Ohio, Lat: 39.2861, Lng: -84.5258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Georgia 33.6209 -84.3590 matched with DB +City: Forest Park, state: Illinois, Lat: 41.8683, Lng: -87.8157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Georgia 33.6209 -84.3590 matched with DB +City: Forest Park, state: Georgia, Lat: 33.6209, Lng: -84.359, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arvin, California 35.1944 -118.8306 matched with DB +City: Arvin, state: California, Lat: 35.1944, Lng: -118.8306, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Punta Gorda, Florida 26.8941 -82.0513 matched with DB +City: Punta Gorda, state: Florida, Lat: 26.8941, Lng: -82.0513, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brigham City, Utah 41.5035 -112.0453 matched with DB +City: Brigham City, state: Utah, Lat: 41.5035, Lng: -112.0453, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holtsville, New York 40.8124 -73.0447 matched with DB +City: Holtsville, state: New York, Lat: 40.8124, Lng: -73.0447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, North Carolina 35.8018 -80.2682 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, North Carolina 35.8018 -80.2682 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, North Carolina 35.8018 -80.2682 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, North Carolina 35.8018 -80.2682 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, North Carolina 35.8018 -80.2682 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erlanger, Kentucky 39.0109 -84.5864 matched with DB +City: Erlanger, state: Kentucky, Lat: 39.0109, Lng: -84.5864, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hermosa Beach, California 33.8653 -118.3962 matched with DB +City: Hermosa Beach, state: California, Lat: 33.8653, Lng: -118.3962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Massapequa, New York 40.6742 -73.4359 matched with DB +City: East Massapequa, state: New York, Lat: 40.6742, Lng: -73.4359, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Mifflin, Pennsylvania 40.3581 -79.9073 matched with DB +City: West Mifflin, state: Pennsylvania, Lat: 40.3581, Lng: -79.9073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orinda, California 37.8808 -122.1790 matched with DB +City: Orinda, state: California, Lat: 37.8808, Lng: -122.179, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawthorne, New Jersey 40.9579 -74.1582 matched with DB +City: Hawthorne, state: New Jersey, Lat: 40.9579, Lng: -74.1582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hawthorne, New Jersey 40.9579 -74.1582 matched with DB +City: Hawthorne, state: California, Lat: 33.9147, Lng: -118.3476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Angleton, Texas 29.1721 -95.4293 matched with DB +City: Angleton, state: Texas, Lat: 29.1721, Lng: -95.4293, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Colorado 39.0764 -108.4605 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Colorado 39.0764 -108.4605 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Forest, Illinois 42.2380 -87.8596 matched with DB +City: Lake Forest, state: Illinois, Lat: 42.238, Lng: -87.8596, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lake Forest, Illinois 42.2380 -87.8596 matched with DB +City: Lake Forest, state: California, Lat: 33.6605, Lng: -117.6714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madisonville, Kentucky 37.3409 -87.5034 matched with DB +City: Madisonville, state: Kentucky, Lat: 37.3409, Lng: -87.5034, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartow, Florida 27.8868 -81.8214 matched with DB +City: Bartow, state: Florida, Lat: 27.8868, Lng: -81.8214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynn Haven, Florida 30.2337 -85.6370 matched with DB +City: Lynn Haven, state: Florida, Lat: 30.2337, Lng: -85.637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zachary, Louisiana 30.6643 -91.1634 matched with DB +City: Zachary, state: Louisiana, Lat: 30.6643, Lng: -91.1634, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweetwater, Florida 25.7785 -80.3760 matched with DB +City: Sweetwater, state: Florida, Lat: 25.7785, Lng: -80.376, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sweetwater, Florida 25.7785 -80.3760 matched with DB +City: Sweetwater, state: Texas, Lat: 32.4692, Lng: -100.4092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sartell, Minnesota 45.6188 -94.2206 matched with DB +City: Sartell, state: Minnesota, Lat: 45.6188, Lng: -94.2206, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, Florida 26.9717 -82.3524 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Florida 26.9717 -82.3524 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Florida 26.9717 -82.3524 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Florida 26.9717 -82.3524 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prunedale, California 36.8064 -121.6555 matched with DB +City: Prunedale, state: California, Lat: 36.8064, Lng: -121.6555, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seabrook, Maryland 38.9802 -76.8502 matched with DB +City: Seabrook, state: Texas, Lat: 29.5751, Lng: -95.0235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seabrook, Maryland 38.9802 -76.8502 matched with DB +City: Seabrook, state: Maryland, Lat: 38.9802, Lng: -76.8502, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boone, North Carolina 36.2111 -81.6669 matched with DB +City: Boone, state: Iowa, Lat: 42.0531, Lng: -93.877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Boone, North Carolina 36.2111 -81.6669 matched with DB +City: Boone, state: North Carolina, Lat: 36.2111, Lng: -81.6669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prichard, Alabama 30.7735 -88.1301 matched with DB +City: Prichard, state: Alabama, Lat: 30.7735, Lng: -88.1301, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookfield, Illinois 41.8245 -87.8470 matched with DB +City: Brookfield, state: Wisconsin, Lat: 43.064, Lng: -88.1231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookfield, Illinois 41.8245 -87.8470 matched with DB +City: Brookfield, state: Illinois, Lat: 41.8245, Lng: -87.847, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrensburg, Missouri 38.7627 -93.7260 matched with DB +City: Warrensburg, state: Missouri, Lat: 38.7627, Lng: -93.726, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stillwater, Minnesota 45.0573 -92.8313 matched with DB +City: Stillwater, state: New York, Lat: 42.9701, Lng: -73.6885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stillwater, Minnesota 45.0573 -92.8313 matched with DB +City: Stillwater, state: Minnesota, Lat: 45.0573, Lng: -92.8313, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stillwater, Minnesota 45.0573 -92.8313 matched with DB +City: Stillwater, state: Oklahoma, Lat: 36.1317, Lng: -97.0742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naples, Florida 26.1504 -81.7936 matched with DB +City: Naples, state: Florida, Lat: 26.1504, Lng: -81.7936, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Twinsburg, Ohio 41.3220 -81.4451 matched with DB +City: Twinsburg, state: Ohio, Lat: 41.322, Lng: -81.4451, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sudley, Virginia 38.7878 -77.4961 matched with DB +City: Sudley, state: Virginia, Lat: 38.7878, Lng: -77.4961, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seminole, Florida 27.8435 -82.7840 matched with DB +City: Seminole, state: Florida, Lat: 27.8435, Lng: -82.784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cutlerville, Michigan 42.8403 -85.6734 matched with DB +City: Cutlerville, state: Michigan, Lat: 42.8403, Lng: -85.6734, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Ohio 40.8668 -82.3156 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Ohio 40.8668 -82.3156 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Ohio 40.8668 -82.3156 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Ohio 40.8668 -82.3156 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Ohio 40.8668 -82.3156 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Ohio 40.8668 -82.3156 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Utah 40.4276 -111.7957 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Utah 40.4276 -111.7957 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Utah 40.4276 -111.7957 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Utah 40.4276 -111.7957 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hermiston, Oregon 45.8326 -119.2854 matched with DB +City: Hermiston, state: Oregon, Lat: 45.8326, Lng: -119.2854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maitland, Florida 28.6295 -81.3718 matched with DB +City: Maitland, state: Florida, Lat: 28.6295, Lng: -81.3718, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferndale, Michigan 42.4592 -83.1313 matched with DB +City: Ferndale, state: Michigan, Lat: 42.4592, Lng: -83.1313, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Michigan 42.4592 -83.1313 matched with DB +City: Ferndale, state: Maryland, Lat: 39.1869, Lng: -76.6331, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Michigan 42.4592 -83.1313 matched with DB +City: Ferndale, state: Washington, Lat: 48.8526, Lng: -122.5894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherrelwood, Colorado 39.8390 -105.0014 matched with DB +City: Sherrelwood, state: Colorado, Lat: 39.839, Lng: -105.0014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valle Vista, California 33.7436 -116.8871 matched with DB +City: Valle Vista, state: California, Lat: 33.7436, Lng: -116.8871, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveland, Florida 28.6098 -81.8246 matched with DB +City: Groveland, state: Florida, Lat: 28.6098, Lng: -81.8246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, New York 40.6797 -73.5837 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange, Texas 30.1226 -93.7607 matched with DB +City: Orange, state: California, Lat: 33.8038, Lng: -117.8218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Orange, Texas 30.1226 -93.7607 matched with DB +City: Orange, state: Texas, Lat: 30.1226, Lng: -93.7607, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springboro, Ohio 39.5615 -84.2348 matched with DB +City: Springboro, state: Ohio, Lat: 39.5615, Lng: -84.2348, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, New Jersey 40.7431 -74.1531 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New Jersey 40.7431 -74.1531 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New Jersey 40.7431 -74.1531 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New Jersey 40.7431 -74.1531 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New Jersey 40.7431 -74.1531 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, New Jersey 40.7431 -74.1531 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maumelle, Arkansas 34.8522 -92.4000 matched with DB +City: Maumelle, state: Arkansas, Lat: 34.8522, Lng: -92.4, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Badger, Alaska 64.8006 -147.3877 matched with DB +City: Badger, state: Alaska, Lat: 64.8006, Lng: -147.3877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tinton Falls, New Jersey 40.2708 -74.0949 matched with DB +City: Tinton Falls, state: New Jersey, Lat: 40.2708, Lng: -74.0949, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, California 35.3886 -119.2058 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, California 35.3886 -119.2058 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield, Illinois 42.1654 -87.8516 matched with DB +City: Deerfield, state: Illinois, Lat: 42.1654, Lng: -87.8516, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Mill, Oregon 45.5355 -122.8006 matched with DB +City: Cedar Mill, state: Oregon, Lat: 45.5355, Lng: -122.8006, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durango, Colorado 37.2659 -107.8781 matched with DB +City: Durango, state: Colorado, Lat: 37.2659, Lng: -107.8781, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knightdale, North Carolina 35.7911 -78.4966 matched with DB +City: Knightdale, state: North Carolina, Lat: 35.7911, Lng: -78.4966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central Point, Oregon 42.3764 -122.9111 matched with DB +City: Central Point, state: Oregon, Lat: 42.3764, Lng: -122.9111, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midlothian, Virginia 37.4856 -77.6522 matched with DB +City: Midlothian, state: Illinois, Lat: 41.6254, Lng: -87.7243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Virginia 37.4856 -77.6522 matched with DB +City: Midlothian, state: Texas, Lat: 32.4669, Lng: -96.989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Virginia 37.4856 -77.6522 matched with DB +City: Midlothian, state: Virginia, Lat: 37.4856, Lng: -77.6522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Ohio 39.2106 -84.6060 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Ohio 39.2106 -84.6060 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lumberton, North Carolina 34.6312 -79.0186 matched with DB +City: Lumberton, state: North Carolina, Lat: 34.6312, Lng: -79.0186, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, North Carolina 34.6312 -79.0186 matched with DB +City: Lumberton, state: Texas, Lat: 30.2562, Lng: -94.207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, North Carolina 34.6312 -79.0186 matched with DB +City: Lumberton, state: New Jersey, Lat: 39.9569, Lng: -74.8036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberal, Kansas 37.0466 -100.9295 matched with DB +City: Liberal, state: Kansas, Lat: 37.0466, Lng: -100.9295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haslett, Michigan 42.7525 -84.4020 matched with DB +City: Haslett, state: Michigan, Lat: 42.7525, Lng: -84.402, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tavares, Florida 28.7920 -81.7352 matched with DB +City: Tavares, state: Florida, Lat: 28.792, Lng: -81.7352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Kentucky 38.0018 -84.1908 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kentucky 38.0018 -84.1908 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kentucky 38.0018 -84.1908 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kentucky 38.0018 -84.1908 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kentucky 38.0018 -84.1908 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cocoa, Florida 28.3820 -80.7675 matched with DB +City: Cocoa, state: Florida, Lat: 28.382, Lng: -80.7675, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, California 38.4469 -121.8250 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, California 38.4469 -121.8250 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sylvania, Ohio 41.7100 -83.7092 matched with DB +City: Sylvania, state: Ohio, Lat: 41.71, Lng: -83.7092, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Maryland 39.6515 -78.7584 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Maryland 39.6515 -78.7584 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cimarron Hills, Colorado 38.8597 -104.6995 matched with DB +City: Cimarron Hills, state: Colorado, Lat: 38.8597, Lng: -104.6995, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Point Pleasant, New Jersey 40.0772 -74.0702 matched with DB +City: Point Pleasant, state: New Jersey, Lat: 40.0772, Lng: -74.0702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Ohio 39.1605 -84.4535 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Ohio 39.1605 -84.4535 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Valley Stream, New York 40.6840 -73.7077 matched with DB +City: North Valley Stream, state: New York, Lat: 40.684, Lng: -73.7077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Chester, Pennsylvania 39.9601 -75.6058 matched with DB +City: West Chester, state: Pennsylvania, Lat: 39.9601, Lng: -75.6058, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Georgia 33.4501 -84.4710 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Georgia 33.4501 -84.4710 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Georgia 33.4501 -84.4710 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fate, Texas 32.9430 -96.3858 matched with DB +City: Fate, state: Texas, Lat: 32.943, Lng: -96.3858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gautier, Mississippi 30.4106 -88.6568 matched with DB +City: Gautier, state: Mississippi, Lat: 30.4106, Lng: -88.6568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ellensburg, Washington 46.9999 -120.5475 matched with DB +City: Ellensburg, state: Washington, Lat: 46.9999, Lng: -120.5475, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, California 36.3242 -121.2428 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, California 36.3242 -121.2428 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, California 36.3242 -121.2428 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weirton, West Virginia 40.4060 -80.5671 matched with DB +City: Weirton, state: West Virginia, Lat: 40.406, Lng: -80.5671, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ansonia, Connecticut 41.3443 -73.0689 matched with DB +City: Ansonia, state: Connecticut, Lat: 41.3443, Lng: -73.0689, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fox Crossing, Wisconsin 44.2228 -88.4763 matched with DB +City: Fox Crossing, state: Wisconsin, Lat: 44.2228, Lng: -88.4763, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinole, California 37.9931 -122.2833 matched with DB +City: Pinole, state: California, Lat: 37.9931, Lng: -122.2833, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Maine 44.3341 -69.7319 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Maine 44.3341 -69.7319 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Maine 44.3341 -69.7319 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, North Carolina 35.3125 -80.6485 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, North Carolina 35.3125 -80.6485 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Farm, Virginia 38.9133 -77.3969 matched with DB +City: Franklin Farm, state: Virginia, Lat: 38.9133, Lng: -77.3969, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matteson, Illinois 41.5095 -87.7468 matched with DB +City: Matteson, state: Illinois, Lat: 41.5095, Lng: -87.7468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Carlos Park, Florida 26.4765 -81.8193 matched with DB +City: San Carlos Park, state: Florida, Lat: 26.4765, Lng: -81.8193, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Shore, Maryland 39.1030 -76.4876 matched with DB +City: Lake Shore, state: Maryland, Lat: 39.103, Lng: -76.4876, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coronado, California 32.6649 -117.1604 matched with DB +City: Coronado, state: California, Lat: 32.6649, Lng: -117.1604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alsip, Illinois 41.6701 -87.7368 matched with DB +City: Alsip, state: Illinois, Lat: 41.6701, Lng: -87.7368, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cinco Ranch, Texas 29.7395 -95.7607 matched with DB +City: Cinco Ranch, state: Texas, Lat: 29.7395, Lng: -95.7607, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Myrtle Beach, South Carolina 33.8232 -78.7082 matched with DB +City: North Myrtle Beach, state: South Carolina, Lat: 33.8232, Lng: -78.7082, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Fe Springs, California 33.9329 -118.0625 matched with DB +City: Santa Fe Springs, state: California, Lat: 33.9329, Lng: -118.0625, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ronkonkoma, New York 40.8037 -73.1246 matched with DB +City: Ronkonkoma, state: New York, Lat: 40.8037, Lng: -73.1246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Onalaska, Wisconsin 43.8883 -91.2075 matched with DB +City: Onalaska, state: Wisconsin, Lat: 43.8883, Lng: -91.2075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeway, Texas 30.3544 -97.9864 matched with DB +City: Lakeway, state: Texas, Lat: 30.3544, Lng: -97.9864, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradfordville, Florida 30.5735 -84.2055 matched with DB +City: Bradfordville, state: Florida, Lat: 30.5735, Lng: -84.2055, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Republic, Missouri 37.1452 -93.4446 matched with DB +City: Republic, state: Missouri, Lat: 37.1452, Lng: -93.4446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownwood, Texas 31.7127 -98.9767 matched with DB +City: Brownwood, state: Texas, Lat: 31.7127, Lng: -98.9767, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Wyoming 44.7961 -106.9642 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syosset, New York 40.8157 -73.5020 matched with DB +City: Syosset, state: New York, Lat: 40.8157, Lng: -73.502, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East St. Louis, Illinois 38.6155 -90.1304 matched with DB +City: East St. Louis, state: Illinois, Lat: 38.6155, Lng: -90.1304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshfield, Wisconsin 44.6627 -90.1728 matched with DB +City: Marshfield, state: Wisconsin, Lat: 44.6627, Lng: -90.1728, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshfield, Wisconsin 44.6627 -90.1728 matched with DB +City: Marshfield, state: Massachusetts, Lat: 42.114, Lng: -70.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wisconsin Rapids, Wisconsin 44.3927 -89.8265 matched with DB +City: Wisconsin Rapids, state: Wisconsin, Lat: 44.3927, Lng: -89.8265, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Tennessee 36.4949 -86.8711 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chowchilla, California 37.1095 -120.2349 matched with DB +City: Chowchilla, state: California, Lat: 37.1095, Lng: -120.2349, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durant, Oklahoma 33.9949 -96.3923 matched with DB +City: Durant, state: Oklahoma, Lat: 33.9949, Lng: -96.3923, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutherford, New Jersey 40.8203 -74.1057 matched with DB +City: Rutherford, state: New Jersey, Lat: 40.8203, Lng: -74.1057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopkins, Minnesota 44.9259 -93.4056 matched with DB +City: Hopkins, state: Minnesota, Lat: 44.9259, Lng: -93.4056, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayshore Gardens, Florida 27.4345 -82.5793 matched with DB +City: Bayshore Gardens, state: Florida, Lat: 27.4345, Lng: -82.5793, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomasville, Georgia 30.8394 -83.9782 matched with DB +City: Thomasville, state: North Carolina, Lat: 35.8813, Lng: -80.0807, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Thomasville, Georgia 30.8394 -83.9782 matched with DB +City: Thomasville, state: Georgia, Lat: 30.8394, Lng: -83.9782, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palestine, Texas 31.7544 -95.6471 matched with DB +City: Palestine, state: Texas, Lat: 31.7544, Lng: -95.6471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wallingford Center, Connecticut 41.4499 -72.8189 matched with DB +City: Wallingford Center, state: Connecticut, Lat: 41.4499, Lng: -72.8189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansdale, Pennsylvania 40.2417 -75.2812 matched with DB +City: Lansdale, state: Pennsylvania, Lat: 40.2417, Lng: -75.2812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phoenixville, Pennsylvania 40.1359 -75.5201 matched with DB +City: Phoenixville, state: Pennsylvania, Lat: 40.1359, Lng: -75.5201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Walk, Florida 25.6330 -80.4353 matched with DB +City: Country Walk, state: Florida, Lat: 25.633, Lng: -80.4353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South San Jose Hills, California 34.0123 -117.9043 matched with DB +City: South San Jose Hills, state: California, Lat: 34.0123, Lng: -117.9043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altus, Oklahoma 34.6565 -99.3061 matched with DB +City: Altus, state: Oklahoma, Lat: 34.6565, Lng: -99.3061, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ottawa, Illinois 41.3555 -88.8261 matched with DB +City: Ottawa, state: Kansas, Lat: 38.5996, Lng: -95.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ottawa, Illinois 41.3555 -88.8261 matched with DB +City: Ottawa, state: Illinois, Lat: 41.3555, Lng: -88.8261, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Creve Coeur, Missouri 38.6620 -90.4430 matched with DB +City: Creve Coeur, state: Missouri, Lat: 38.662, Lng: -90.443, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, West Virginia 39.4582 -77.9776 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Round Lake, Illinois 42.3435 -88.1059 matched with DB +City: Round Lake, state: Illinois, Lat: 42.3435, Lng: -88.1059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bensenville, Illinois 41.9579 -87.9442 matched with DB +City: Bensenville, state: Illinois, Lat: 41.9579, Lng: -87.9442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trinity, Florida 28.1809 -82.6582 matched with DB +City: Trinity, state: Florida, Lat: 28.1809, Lng: -82.6582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seagoville, Texas 32.6530 -96.5456 matched with DB +City: Seagoville, state: Texas, Lat: 32.653, Lng: -96.5456, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerton, Arkansas 36.3566 -94.2971 matched with DB +City: Centerton, state: Arkansas, Lat: 36.3566, Lng: -94.2971, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Michael, Minnesota 45.2014 -93.6920 matched with DB +City: St. Michael, state: Minnesota, Lat: 45.2014, Lng: -93.692, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Castaic, California 34.4818 -118.6316 matched with DB +City: Castaic, state: California, Lat: 34.4818, Lng: -118.6316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knik-Fairview, Alaska 61.5082 -149.6252 matched with DB +City: Knik-Fairview, state: Alaska, Lat: 61.5082, Lng: -149.6252, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairwood, Washington 47.4467 -122.1430 matched with DB +City: Fairwood, state: Washington, Lat: 47.4467, Lng: -122.143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellwood, Illinois 41.8829 -87.8762 matched with DB +City: Bellwood, state: Illinois, Lat: 41.8829, Lng: -87.8762, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Missouri 38.5117 -90.3574 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Missouri 38.5117 -90.3574 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Missouri 38.5117 -90.3574 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Missouri 38.5117 -90.3574 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Missouri 38.5117 -90.3574 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Missouri 38.5117 -90.3574 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Five Forks, South Carolina 34.8069 -82.2271 matched with DB +City: Five Forks, state: South Carolina, Lat: 34.8069, Lng: -82.2271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Preakness, New Jersey 40.9382 -74.2242 matched with DB +City: Preakness, state: New Jersey, Lat: 40.9382, Lng: -74.2242, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oregon 44.5317 -122.9071 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anna, Texas 33.3472 -96.5508 matched with DB +City: Anna, state: Texas, Lat: 33.3472, Lng: -96.5508, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colonia, New Jersey 40.5926 -74.3148 matched with DB +City: Colonia, state: New Jersey, Lat: 40.5926, Lng: -74.3148, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clive, Iowa 41.6147 -93.7980 matched with DB +City: Clive, state: Iowa, Lat: 41.6147, Lng: -93.798, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth City, North Carolina 36.2942 -76.2360 matched with DB +City: Elizabeth City, state: North Carolina, Lat: 36.2942, Lng: -76.236, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nederland, Texas 29.9707 -94.0015 matched with DB +City: Nederland, state: Texas, Lat: 29.9707, Lng: -94.0015, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsland, Georgia 30.8194 -81.7216 matched with DB +City: Kingsland, state: Georgia, Lat: 30.8194, Lng: -81.7216, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shenandoah, Louisiana 30.4019 -91.0020 matched with DB +City: Shenandoah, state: Louisiana, Lat: 30.4019, Lng: -91.002, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berea, Ohio 41.3696 -81.8641 matched with DB +City: Berea, state: Ohio, Lat: 41.3696, Lng: -81.8641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, Ohio 41.3696 -81.8641 matched with DB +City: Berea, state: Kentucky, Lat: 37.5904, Lng: -84.2898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, Ohio 41.3696 -81.8641 matched with DB +City: Berea, state: South Carolina, Lat: 34.8802, Lng: -82.465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferguson, Missouri 38.7490 -90.2950 matched with DB +City: Ferguson, state: Missouri, Lat: 38.749, Lng: -90.295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferguson, Missouri 38.7490 -90.2950 matched with DB +City: Ferguson, state: Pennsylvania, Lat: 40.7432, Lng: -77.9403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcata, California 40.8615 -124.0758 matched with DB +City: Arcata, state: California, Lat: 40.8615, Lng: -124.0758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Kansas 38.0368 -97.3449 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Kansas 38.0368 -97.3449 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Kansas 38.0368 -97.3449 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Kansas 38.0368 -97.3449 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parole, Maryland 38.9863 -76.5518 matched with DB +City: Parole, state: Maryland, Lat: 38.9863, Lng: -76.5518, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melville, New York 40.7824 -73.4088 matched with DB +City: Melville, state: New York, Lat: 40.7824, Lng: -73.4088, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxon Hill, Maryland 38.7884 -76.9727 matched with DB +City: Oxon Hill, state: Maryland, Lat: 38.7884, Lng: -76.9727, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iselin, New Jersey 40.5697 -74.3172 matched with DB +City: Iselin, state: New Jersey, Lat: 40.5697, Lng: -74.3172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brook Park, Ohio 41.4036 -81.8219 matched with DB +City: Brook Park, state: Ohio, Lat: 41.4036, Lng: -81.8219, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Marys, Georgia 30.7567 -81.5722 matched with DB +City: St. Marys, state: Pennsylvania, Lat: 41.4574, Lng: -78.5342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Marys, Georgia 30.7567 -81.5722 matched with DB +City: St. Marys, state: Georgia, Lat: 30.7567, Lng: -81.5722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Texas 26.2884 -98.3098 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Texas 26.2884 -98.3098 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Virginia 37.6375 -77.5062 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Virginia 37.6375 -77.5062 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Virginia 37.6375 -77.5062 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Virginia 37.6375 -77.5062 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boerne, Texas 29.7847 -98.7292 matched with DB +City: Boerne, state: Texas, Lat: 29.7847, Lng: -98.7292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Marque, Texas 29.3683 -94.9941 matched with DB +City: La Marque, state: Texas, Lat: 29.3683, Lng: -94.9941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Texas 33.1778 -96.5044 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Texas 33.1778 -96.5044 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Texas 33.1778 -96.5044 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arroyo Grande, California 35.1241 -120.5845 matched with DB +City: Arroyo Grande, state: California, Lat: 35.1241, Lng: -120.5845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albert Lea, Minnesota 43.6548 -93.3643 matched with DB +City: Albert Lea, state: Minnesota, Lat: 43.6548, Lng: -93.3643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cullman, Alabama 34.1775 -86.8407 matched with DB +City: Cullman, state: Alabama, Lat: 34.1775, Lng: -86.8407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnstown, Pennsylvania 40.3260 -78.9194 matched with DB +City: Johnstown, state: Pennsylvania, Lat: 40.326, Lng: -78.9194, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnstown, Pennsylvania 40.3260 -78.9194 matched with DB +City: Johnstown, state: Colorado, Lat: 40.3499, Lng: -104.9482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, New Jersey 40.8859 -74.5597 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Jersey 40.8859 -74.5597 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Jersey 40.8859 -74.5597 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Jersey 40.8859 -74.5597 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, New Jersey 40.8859 -74.5597 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New River, Arizona 33.8835 -112.0858 matched with DB +City: New River, state: Arizona, Lat: 33.8835, Lng: -112.0858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Michigan 42.1394 -83.1929 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Michigan 42.1394 -83.1929 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Michigan 42.1394 -83.1929 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean Springs, Mississippi 30.4082 -88.7861 matched with DB +City: Ocean Springs, state: Mississippi, Lat: 30.4082, Lng: -88.7861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winder, Georgia 33.9917 -83.7218 matched with DB +City: Winder, state: Georgia, Lat: 33.9917, Lng: -83.7218, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tallmadge, Ohio 41.1023 -81.4216 matched with DB +City: Tallmadge, state: Ohio, Lat: 41.1023, Lng: -81.4216, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmont, West Virginia 39.4768 -80.1491 matched with DB +City: Fairmont, state: West Virginia, Lat: 39.4768, Lng: -80.1491, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmont, West Virginia 39.4768 -80.1491 matched with DB +City: Fairmont, state: Minnesota, Lat: 43.6441, Lng: -94.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Babylon, New York 40.7314 -73.3248 matched with DB +City: North Babylon, state: New York, Lat: 40.7314, Lng: -73.3248, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crowley, Texas 32.5781 -97.3585 matched with DB +City: Crowley, state: Louisiana, Lat: 30.2175, Lng: -92.3752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Crowley, Texas 32.5781 -97.3585 matched with DB +City: Crowley, state: Texas, Lat: 32.5781, Lng: -97.3585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bay Shore, New York 40.7602 -73.2617 matched with DB +City: North Bay Shore, state: New York, Lat: 40.7602, Lng: -73.2617, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Park, Illinois 41.9361 -87.8794 matched with DB +City: Franklin Park, state: Pennsylvania, Lat: 40.5903, Lng: -80.0999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, Illinois 41.9361 -87.8794 matched with DB +City: Franklin Park, state: Illinois, Lat: 41.9361, Lng: -87.8794, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, Illinois 41.9361 -87.8794 matched with DB +City: Franklin Park, state: New Jersey, Lat: 40.4439, Lng: -74.5431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newburyport, Massachusetts 42.8124 -70.8878 matched with DB +City: Newburyport, state: Massachusetts, Lat: 42.8124, Lng: -70.8878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redland, Maryland 39.1339 -77.1464 matched with DB +City: Redland, state: Maryland, Lat: 39.1339, Lng: -77.1464, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maryland City, Maryland 39.1016 -76.8051 matched with DB +City: Maryland City, state: Maryland, Lat: 39.1016, Lng: -76.8051, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Ronkonkoma, New York 40.8297 -73.1128 matched with DB +City: Lake Ronkonkoma, state: New York, Lat: 40.8297, Lng: -73.1128, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Haven, Utah 41.2083 -112.0541 matched with DB +City: West Haven, state: Connecticut, Lat: 41.2739, Lng: -72.9672, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Haven, Utah 41.2083 -112.0541 matched with DB +City: West Haven, state: Utah, Lat: 41.2083, Lng: -112.0541, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calverton, Maryland 39.0578 -76.9488 matched with DB +City: Calverton, state: Maryland, Lat: 39.0578, Lng: -76.9488, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lenoir, North Carolina 35.9094 -81.5249 matched with DB +City: Lenoir, state: North Carolina, Lat: 35.9094, Lng: -81.5249, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Panama City Beach, Florida 30.2370 -85.8776 matched with DB +City: Panama City Beach, state: Florida, Lat: 30.237, Lng: -85.8776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinecrest, Florida 25.6650 -80.3042 matched with DB +City: Pinecrest, state: Florida, Lat: 25.665, Lng: -80.3042, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palos Hills, Illinois 41.6986 -87.8266 matched with DB +City: Palos Hills, state: Illinois, Lat: 41.6986, Lng: -87.8266, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phelan, California 34.4398 -117.5248 matched with DB +City: Phelan, state: California, Lat: 34.4398, Lng: -117.5248, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kentucky 39.0223 -84.7217 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amsterdam, New York 42.9420 -74.1906 matched with DB +City: Amsterdam, state: New York, Lat: 42.942, Lng: -74.1906, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Missouri 38.5830 -90.5064 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Missouri 38.5830 -90.5064 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Missouri 38.5830 -90.5064 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Missouri 38.5830 -90.5064 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Missouri 38.5830 -90.5064 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Missouri 38.5830 -90.5064 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centralia, Washington 46.7223 -122.9696 matched with DB +City: Centralia, state: Illinois, Lat: 38.5224, Lng: -89.1232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centralia, Washington 46.7223 -122.9696 matched with DB +City: Centralia, state: Washington, Lat: 46.7223, Lng: -122.9696, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean Acres, New Jersey 39.7430 -74.2805 matched with DB +City: Ocean Acres, state: New Jersey, Lat: 39.743, Lng: -74.2805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingstowne, Virginia 38.7625 -77.1444 matched with DB +City: Kingstowne, state: Virginia, Lat: 38.7625, Lng: -77.1444, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Massapequa, New York 40.7031 -73.4678 matched with DB +City: North Massapequa, state: New York, Lat: 40.7031, Lng: -73.4678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oconomowoc, Wisconsin 43.0996 -88.4948 matched with DB +City: Oconomowoc, state: Wisconsin, Lat: 43.0996, Lng: -88.4948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Steubenville, Ohio 40.3653 -80.6519 matched with DB +City: Steubenville, state: Ohio, Lat: 40.3653, Lng: -80.6519, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, Illinois 41.9957 -88.6821 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logansport, Indiana 40.7472 -86.3520 matched with DB +City: Logansport, state: Indiana, Lat: 40.7472, Lng: -86.352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colonial Heights, Virginia 37.2650 -77.3969 matched with DB +City: Colonial Heights, state: Virginia, Lat: 37.265, Lng: -77.3969, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Schofield Barracks, Hawaii 21.4936 -158.0617 matched with DB +City: Schofield Barracks, state: Hawaii, Lat: 21.4936, Lng: -158.0617, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portsmouth, Ohio 38.7538 -82.9445 matched with DB +City: Portsmouth, state: Ohio, Lat: 38.7538, Lng: -82.9445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Ohio 38.7538 -82.9445 matched with DB +City: Portsmouth, state: New Hampshire, Lat: 43.058, Lng: -70.7826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Ohio 38.7538 -82.9445 matched with DB +City: Portsmouth, state: Virginia, Lat: 36.8468, Lng: -76.354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Ohio 38.7538 -82.9445 matched with DB +City: Portsmouth, state: Rhode Island, Lat: 41.5922, Lng: -71.2745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canby, Oregon 45.2652 -122.6867 matched with DB +City: Canby, state: Oregon, Lat: 45.2652, Lng: -122.6867, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bourbonnais, Illinois 41.1830 -87.8784 matched with DB +City: Bourbonnais, state: Illinois, Lat: 41.183, Lng: -87.8784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Menasha, Wisconsin 44.2125 -88.4271 matched with DB +City: Menasha, state: Wisconsin, Lat: 44.2125, Lng: -88.4271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McAlester, Oklahoma 34.9257 -95.7734 matched with DB +City: McAlester, state: Oklahoma, Lat: 34.9257, Lng: -95.7734, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shorewood, Illinois 41.5169 -88.2146 matched with DB +City: Shorewood, state: Wisconsin, Lat: 43.0913, Lng: -87.8864, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shorewood, Illinois 41.5169 -88.2146 matched with DB +City: Shorewood, state: Illinois, Lat: 41.5169, Lng: -88.2146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niles, Ohio 41.1879 -80.7531 matched with DB +City: Niles, state: Michigan, Lat: 41.8346, Lng: -86.2473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Ohio 41.1879 -80.7531 matched with DB +City: Niles, state: Ohio, Lat: 41.1879, Lng: -80.7531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Ohio 41.1879 -80.7531 matched with DB +City: Niles, state: Illinois, Lat: 42.0278, Lng: -87.8099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Settlement, Texas 32.7554 -97.4605 matched with DB +City: White Settlement, state: Texas, Lat: 32.7554, Lng: -97.4605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Carson, Colorado 38.7095 -104.7720 matched with DB +City: Fort Carson, state: Colorado, Lat: 38.7095, Lng: -104.772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hybla Valley, Virginia 38.7484 -77.0821 matched with DB +City: Hybla Valley, state: Virginia, Lat: 38.7484, Lng: -77.0821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cudahy, Wisconsin 42.9467 -87.8641 matched with DB +City: Cudahy, state: Wisconsin, Lat: 42.9467, Lng: -87.8641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cudahy, Wisconsin 42.9467 -87.8641 matched with DB +City: Cudahy, state: California, Lat: 33.9631, Lng: -118.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Riverdale, Maryland 38.9600 -76.9109 matched with DB +City: East Riverdale, state: Maryland, Lat: 38.96, Lng: -76.9109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scarsdale, New York 40.9902 -73.7773 matched with DB +City: Scarsdale, state: New York, Lat: 40.9902, Lng: -73.7773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spanish Lake, Missouri 38.7884 -90.2077 matched with DB +City: Spanish Lake, state: Missouri, Lat: 38.7884, Lng: -90.2077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryn Mawr-Skyway, Washington 47.4949 -122.2410 matched with DB +City: Bryn Mawr-Skyway, state: Washington, Lat: 47.4949, Lng: -122.241, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tillmans Corner, Alabama 30.5819 -88.2128 matched with DB +City: Tillmans Corner, state: Alabama, Lat: 30.5819, Lng: -88.2128, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dumont, New Jersey 40.9452 -73.9923 matched with DB +City: Dumont, state: New Jersey, Lat: 40.9452, Lng: -73.9923, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nipomo, California 35.0319 -120.4985 matched with DB +City: Nipomo, state: California, Lat: 35.0319, Lng: -120.4985, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashtabula, Ohio 41.8805 -80.7984 matched with DB +City: Ashtabula, state: Ohio, Lat: 41.8805, Lng: -80.7984, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terrell, Texas 32.7340 -96.2931 matched with DB +City: Terrell, state: Texas, Lat: 32.734, Lng: -96.2931, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron Park, California 38.6738 -120.9872 matched with DB +City: Cameron Park, state: California, Lat: 38.6738, Lng: -120.9872, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wantagh, New York 40.6686 -73.5104 matched with DB +City: Wantagh, state: New York, Lat: 40.6686, Lng: -73.5104, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Washington, Kentucky 38.0430 -85.5551 matched with DB +City: Mount Washington, state: Kentucky, Lat: 38.043, Lng: -85.5551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sevierville, Tennessee 35.8872 -83.5678 matched with DB +City: Sevierville, state: Tennessee, Lat: 35.8872, Lng: -83.5678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cohoes, New York 42.7732 -73.7077 matched with DB +City: Cohoes, state: New York, Lat: 42.7732, Lng: -73.7077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blythe, California 33.6219 -114.6195 matched with DB +City: Blythe, state: California, Lat: 33.6219, Lng: -114.6195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burke Centre, Virginia 38.7903 -77.2999 matched with DB +City: Burke Centre, state: Virginia, Lat: 38.7903, Lng: -77.2999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ammon, Idaho 43.4745 -111.9568 matched with DB +City: Ammon, state: Idaho, Lat: 43.4745, Lng: -111.9568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alice, Texas 27.7556 -98.0653 matched with DB +City: Alice, state: Texas, Lat: 27.7556, Lng: -98.0653, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Natchitoches, Louisiana 31.7315 -93.0975 matched with DB +City: Natchitoches, state: Louisiana, Lat: 31.7315, Lng: -93.0975, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franconia, Virginia 38.7682 -77.1587 matched with DB +City: Franconia, state: Virginia, Lat: 38.7682, Lng: -77.1587, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franconia, Virginia 38.7682 -77.1587 matched with DB +City: Franconia, state: Pennsylvania, Lat: 40.3055, Lng: -75.359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenvar Heights, Florida 25.7090 -80.3155 matched with DB +City: Glenvar Heights, state: Florida, Lat: 25.709, Lng: -80.3155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mebane, North Carolina 36.0852 -79.2736 matched with DB +City: Mebane, state: North Carolina, Lat: 36.0852, Lng: -79.2736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tiffin, Ohio 41.1165 -83.1805 matched with DB +City: Tiffin, state: Ohio, Lat: 41.1165, Lng: -83.1805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anoka, Minnesota 45.2099 -93.3893 matched with DB +City: Anoka, state: Minnesota, Lat: 45.2099, Lng: -93.3893, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cary, Illinois 42.2129 -88.2494 matched with DB +City: Cary, state: Illinois, Lat: 42.2129, Lng: -88.2494, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cary, Illinois 42.2129 -88.2494 matched with DB +City: Cary, state: North Carolina, Lat: 35.7819, Lng: -78.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Steiner Ranch, Texas 30.3654 -97.8960 matched with DB +City: Steiner Ranch, state: Texas, Lat: 30.3654, Lng: -97.896, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gibsonton, Florida 27.8260 -82.3761 matched with DB +City: Gibsonton, state: Florida, Lat: 27.826, Lng: -82.3761, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, Alabama 32.4166 -87.0336 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Alabama 32.4166 -87.0336 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Alabama 32.4166 -87.0336 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay City, Texas 28.9838 -95.9601 matched with DB +City: Bay City, state: Michigan, Lat: 43.5902, Lng: -83.8887, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bay City, Texas 28.9838 -95.9601 matched with DB +City: Bay City, state: Texas, Lat: 28.9838, Lng: -95.9601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Missouri 37.7822 -90.4282 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Missouri 37.7822 -90.4282 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Missouri 37.7822 -90.4282 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Missouri 37.7822 -90.4282 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Missouri 37.7822 -90.4282 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Missouri 37.7822 -90.4282 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pataskala, Ohio 40.0110 -82.7155 matched with DB +City: Pataskala, state: Ohio, Lat: 40.011, Lng: -82.7155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Florida 25.8216 -80.2417 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Florida 25.8216 -80.2417 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Florida 25.8216 -80.2417 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, Illinois 39.4842 -88.1781 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Illinois 39.4842 -88.1781 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Illinois 39.4842 -88.1781 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Godfrey, Illinois 38.9577 -90.2156 matched with DB +City: Godfrey, state: Illinois, Lat: 38.9577, Lng: -90.2156, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Idylwood, Virginia 38.8896 -77.2056 matched with DB +City: Idylwood, state: Virginia, Lat: 38.8896, Lng: -77.2056, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Canton, Ohio 40.8742 -81.3971 matched with DB +City: North Canton, state: Ohio, Lat: 40.8742, Lng: -81.3971, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Butler, Florida 28.4862 -81.5460 matched with DB +City: Lake Butler, state: Florida, Lat: 28.4862, Lng: -81.546, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willimantic, Connecticut 41.7171 -72.2114 matched with DB +City: Willimantic, state: Connecticut, Lat: 41.7171, Lng: -72.2114, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Alabama 31.8021 -85.9664 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Alabama 31.8021 -85.9664 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Alabama 31.8021 -85.9664 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Alabama 31.8021 -85.9664 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Alabama 31.8021 -85.9664 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Alabama 31.8021 -85.9664 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cahokia Heights, Illinois 38.5710 -90.1525 matched with DB +City: Cahokia Heights, state: Illinois, Lat: 38.571, Lng: -90.1525, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Aurora, Illinois 41.8086 -88.3414 matched with DB +City: North Aurora, state: Illinois, Lat: 41.8086, Lng: -88.3414, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McKeesport, Pennsylvania 40.3418 -79.8440 matched with DB +City: McKeesport, state: Pennsylvania, Lat: 40.3418, Lng: -79.844, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Live Oak, California 36.9860 -121.9804 matched with DB +City: Live Oak, state: Texas, Lat: 29.5545, Lng: -98.3404, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Live Oak, California 36.9860 -121.9804 matched with DB +City: Live Oak, state: California, Lat: 36.986, Lng: -121.9804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope Mills, North Carolina 34.9710 -78.9597 matched with DB +City: Hope Mills, state: North Carolina, Lat: 34.971, Lng: -78.9597, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anacortes, Washington 48.4878 -122.6292 matched with DB +City: Anacortes, state: Washington, Lat: 48.4878, Lng: -122.6292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brenham, Texas 30.1584 -96.3966 matched with DB +City: Brenham, state: Texas, Lat: 30.1584, Lng: -96.3966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinehurst, North Carolina 35.1922 -79.4684 matched with DB +City: Pinehurst, state: North Carolina, Lat: 35.1922, Lng: -79.4684, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Holly, North Carolina 35.3136 -81.0073 matched with DB +City: Mount Holly, state: North Carolina, Lat: 35.3136, Lng: -81.0073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Holly, North Carolina 35.3136 -81.0073 matched with DB +City: Mount Holly, state: New Jersey, Lat: 39.995, Lng: -74.7863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camano, Washington 48.1865 -122.4708 matched with DB +City: Camano, state: Washington, Lat: 48.1865, Lng: -122.4708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gretna, Louisiana 29.9101 -90.0515 matched with DB +City: Gretna, state: Nebraska, Lat: 41.1314, Lng: -96.245, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gretna, Louisiana 29.9101 -90.0515 matched with DB +City: Gretna, state: Louisiana, Lat: 29.9101, Lng: -90.0515, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stuart, Florida 27.1959 -80.2444 matched with DB +City: Stuart, state: Florida, Lat: 27.1959, Lng: -80.2444, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Illinois 39.7292 -90.2317 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Illinois 39.7292 -90.2317 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Illinois 39.7292 -90.2317 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Illinois 39.7292 -90.2317 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Illinois 39.7292 -90.2317 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Illinois 39.7292 -90.2317 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Siloam Springs, Arkansas 36.1844 -94.5315 matched with DB +City: Siloam Springs, state: Arkansas, Lat: 36.1844, Lng: -94.5315, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodmere, New York 40.6375 -73.7219 matched with DB +City: Woodmere, state: New York, Lat: 40.6375, Lng: -73.7219, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodmere, New York 40.6375 -73.7219 matched with DB +City: Woodmere, state: Louisiana, Lat: 29.8493, Lng: -90.0751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastlake, Ohio 41.6581 -81.4322 matched with DB +City: Eastlake, state: Ohio, Lat: 41.6581, Lng: -81.4322, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Dorado, Arkansas 33.2184 -92.6640 matched with DB +City: El Dorado, state: Kansas, Lat: 37.821, Lng: -96.8613, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: El Dorado, Arkansas 33.2184 -92.6640 matched with DB +City: El Dorado, state: Arkansas, Lat: 33.2184, Lng: -92.664, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Storrs, Connecticut 41.8083 -72.2514 matched with DB +City: Storrs, state: Connecticut, Lat: 41.8083, Lng: -72.2514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Philadelphia, Ohio 40.4860 -81.4401 matched with DB +City: New Philadelphia, state: Ohio, Lat: 40.486, Lng: -81.4401, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zephyrhills, Florida 28.2409 -82.1797 matched with DB +City: Zephyrhills, state: Florida, Lat: 28.2409, Lng: -82.1797, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortland, New York 42.6004 -76.1784 matched with DB +City: Cortland, state: New York, Lat: 42.6004, Lng: -76.1784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, Michigan 42.2774 -83.3877 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, Michigan 42.2774 -83.3877 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemont, Illinois 41.6695 -87.9838 matched with DB +City: Lemont, state: Illinois, Lat: 41.6695, Lng: -87.9838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clemson, South Carolina 34.6837 -82.8124 matched with DB +City: Clemson, state: South Carolina, Lat: 34.6837, Lng: -82.8124, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Takoma Park, Maryland 38.9810 -77.0028 matched with DB +City: Takoma Park, state: Maryland, Lat: 38.981, Lng: -77.0028, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Oregon 45.4156 -122.6349 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Oregon 45.4156 -122.6349 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Oregon 45.4156 -122.6349 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirksville, Missouri 40.1986 -92.5752 matched with DB +City: Kirksville, state: Missouri, Lat: 40.1986, Lng: -92.5752, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norcross, Georgia 33.9379 -84.2065 matched with DB +City: Norcross, state: Georgia, Lat: 33.9379, Lng: -84.2065, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Matthews, Kentucky 38.2497 -85.6384 matched with DB +City: St. Matthews, state: Kentucky, Lat: 38.2497, Lng: -85.6384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goodlettsville, Tennessee 36.3330 -86.7026 matched with DB +City: Goodlettsville, state: Tennessee, Lat: 36.333, Lng: -86.7026, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coalinga, California 36.1420 -120.3242 matched with DB +City: Coalinga, state: California, Lat: 36.142, Lng: -120.3242, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Ogden, Utah 41.1722 -111.9576 matched with DB +City: South Ogden, state: Utah, Lat: 41.1722, Lng: -111.9576, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Reno, Oklahoma 35.5429 -97.9660 matched with DB +City: El Reno, state: Oklahoma, Lat: 35.5429, Lng: -97.966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Venice, Florida 27.0444 -82.4155 matched with DB +City: South Venice, state: Florida, Lat: 27.0444, Lng: -82.4155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluffdale, Utah 40.4744 -111.9381 matched with DB +City: Bluffdale, state: Utah, Lat: 40.4744, Lng: -111.9381, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gainesville, Texas 33.6390 -97.1487 matched with DB +City: Gainesville, state: Virginia, Lat: 38.7931, Lng: -77.6347, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Texas 33.6390 -97.1487 matched with DB +City: Gainesville, state: Georgia, Lat: 34.2902, Lng: -83.8294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Texas 33.6390 -97.1487 matched with DB +City: Gainesville, state: Florida, Lat: 29.6804, Lng: -82.3459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Texas 33.6390 -97.1487 matched with DB +City: Gainesville, state: Texas, Lat: 33.639, Lng: -97.1487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Columbia, South Carolina 33.9932 -81.0936 matched with DB +City: West Columbia, state: South Carolina, Lat: 33.9932, Lng: -81.0936, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morganton, North Carolina 35.7408 -81.7002 matched with DB +City: Morganton, state: North Carolina, Lat: 35.7408, Lng: -81.7002, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Lunas, New Mexico 34.8115 -106.7803 matched with DB +City: Los Lunas, state: New Mexico, Lat: 34.8115, Lng: -106.7803, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laguna Woods, California 33.6099 -117.7299 matched with DB +City: Laguna Woods, state: California, Lat: 33.6099, Lng: -117.7299, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bon Air, Virginia 37.5187 -77.5713 matched with DB +City: Bon Air, state: Virginia, Lat: 37.5187, Lng: -77.5713, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olivehurst, California 39.0795 -121.5566 matched with DB +City: Olivehurst, state: California, Lat: 39.0795, Lng: -121.5566, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conyers, Georgia 33.6646 -83.9966 matched with DB +City: Conyers, state: Georgia, Lat: 33.6646, Lng: -83.9966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murray, Kentucky 36.6146 -88.3207 matched with DB +City: Murray, state: Kentucky, Lat: 36.6146, Lng: -88.3207, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Murray, Kentucky 36.6146 -88.3207 matched with DB +City: Murray, state: Utah, Lat: 40.6498, Lng: -111.8874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Castle, Indiana 39.9191 -85.3697 matched with DB +City: New Castle, state: Pennsylvania, Lat: 40.9956, Lng: -80.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Indiana 39.9191 -85.3697 matched with DB +City: New Castle, state: Indiana, Lat: 39.9191, Lng: -85.3697, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Indiana 39.9191 -85.3697 matched with DB +City: New Castle, state: New York, Lat: 41.1841, Lng: -73.7721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wahiawa, Hawaii 21.5012 -158.0178 matched with DB +City: Wahiawa, state: Hawaii, Lat: 21.5012, Lng: -158.0178, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Streetsboro, Ohio 41.2396 -81.3456 matched with DB +City: Streetsboro, state: Ohio, Lat: 41.2396, Lng: -81.3456, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodcrest, California 33.8789 -117.3687 matched with DB +City: Woodcrest, state: California, Lat: 33.8789, Lng: -117.3687, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Villa Rica, Georgia 33.7294 -84.9177 matched with DB +City: Villa Rica, state: Georgia, Lat: 33.7294, Lng: -84.9177, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glassmanor, Maryland 38.8181 -76.9833 matched with DB +City: Glassmanor, state: Maryland, Lat: 38.8181, Lng: -76.9833, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnstown, Colorado 40.3499 -104.9482 matched with DB +City: Johnstown, state: Pennsylvania, Lat: 40.326, Lng: -78.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnstown, Colorado 40.3499 -104.9482 matched with DB +City: Johnstown, state: Colorado, Lat: 40.3499, Lng: -104.9482, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jenison, Michigan 42.9063 -85.8269 matched with DB +City: Jenison, state: Michigan, Lat: 42.9063, Lng: -85.8269, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Thomas, Kentucky 39.0801 -84.4518 matched with DB +City: Fort Thomas, state: Kentucky, Lat: 39.0801, Lng: -84.4518, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethpage, New York 40.7495 -73.4856 matched with DB +City: Bethpage, state: New York, Lat: 40.7495, Lng: -73.4856, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Indiana 40.0324 -86.4551 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hernando, Mississippi 34.8500 -89.9921 matched with DB +City: Hernando, state: Florida, Lat: 28.9451, Lng: -82.3781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hernando, Mississippi 34.8500 -89.9921 matched with DB +City: Hernando, state: Mississippi, Lat: 34.85, Lng: -89.9921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho Mirage, California 33.7635 -116.4271 matched with DB +City: Rancho Mirage, state: California, Lat: 33.7635, Lng: -116.4271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanford, California 37.4252 -122.1674 matched with DB +City: Stanford, state: California, Lat: 37.4252, Lng: -122.1674, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Mississippi 31.6956 -89.1449 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Mississippi 31.6956 -89.1449 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Mississippi 31.6956 -89.1449 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Mississippi 31.6956 -89.1449 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Druid Hills, Georgia 33.8185 -84.3254 matched with DB +City: North Druid Hills, state: Georgia, Lat: 33.8185, Lng: -84.3254, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stafford, Texas 29.6271 -95.5654 matched with DB +City: Stafford, state: Texas, Lat: 29.6271, Lng: -95.5654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stafford, Texas 29.6271 -95.5654 matched with DB +City: Stafford, state: New Jersey, Lat: 39.7049, Lng: -74.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelbyville, Kentucky 38.2067 -85.2292 matched with DB +City: Shelbyville, state: Indiana, Lat: 39.5352, Lng: -85.7793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Kentucky 38.2067 -85.2292 matched with DB +City: Shelbyville, state: Kentucky, Lat: 38.2067, Lng: -85.2292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Kentucky 38.2067 -85.2292 matched with DB +City: Shelbyville, state: Tennessee, Lat: 35.4987, Lng: -86.4517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Ohio 41.3118 -81.3450 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Ohio 41.3118 -81.3450 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Ohio 41.3118 -81.3450 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Ohio 41.3118 -81.3450 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buford, Georgia 34.1192 -83.9903 matched with DB +City: Buford, state: Georgia, Lat: 34.1192, Lng: -83.9903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Missouri 38.6444 -90.3303 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Missouri 38.6444 -90.3303 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Missouri 38.6444 -90.3303 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Missouri 38.6444 -90.3303 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Missouri 38.6444 -90.3303 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avenel, New Jersey 40.5842 -74.2716 matched with DB +City: Avenel, state: New Jersey, Lat: 40.5842, Lng: -74.2716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Kentucky 37.6418 -84.7777 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kentucky 37.6418 -84.7777 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kentucky 37.6418 -84.7777 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kentucky 37.6418 -84.7777 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kentucky 37.6418 -84.7777 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flowing Wells, Arizona 32.2937 -111.0110 matched with DB +City: Flowing Wells, state: Arizona, Lat: 32.2937, Lng: -111.011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calhoun, Georgia 34.4910 -84.9386 matched with DB +City: Calhoun, state: Georgia, Lat: 34.491, Lng: -84.9386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Decatur, Georgia 33.8074 -84.2889 matched with DB +City: North Decatur, state: Georgia, Lat: 33.8074, Lng: -84.2889, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hinsdale, Illinois 41.8007 -87.9273 matched with DB +City: Hinsdale, state: Illinois, Lat: 41.8007, Lng: -87.9273, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellaire, Texas 29.7040 -95.4621 matched with DB +City: Bellaire, state: Texas, Lat: 29.704, Lng: -95.4621, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinewood, Florida 25.8697 -80.2174 matched with DB +City: Pinewood, state: Florida, Lat: 25.8697, Lng: -80.2174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview Park, Ohio 41.4419 -81.8530 matched with DB +City: Fairview Park, state: Ohio, Lat: 41.4419, Lng: -81.853, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Graham, North Carolina 36.0589 -79.3894 matched with DB +City: Graham, state: North Carolina, Lat: 36.0589, Lng: -79.3894, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, North Carolina 36.0589 -79.3894 matched with DB +City: Graham, state: Washington, Lat: 47.0322, Lng: -122.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, North Carolina 36.0589 -79.3894 matched with DB +City: Graham, state: Texas, Lat: 33.1017, Lng: -98.5779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beckley, West Virginia 37.7877 -81.1841 matched with DB +City: Beckley, state: West Virginia, Lat: 37.7877, Lng: -81.1841, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manassas Park, Virginia 38.7709 -77.4429 matched with DB +City: Manassas Park, state: Virginia, Lat: 38.7709, Lng: -77.4429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Maryland 38.7760 -76.0701 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Maryland 38.7760 -76.0701 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Maryland 38.7760 -76.0701 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kaukauna, Wisconsin 44.2773 -88.2641 matched with DB +City: Kaukauna, state: Wisconsin, Lat: 44.2773, Lng: -88.2641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groves, Texas 29.9457 -93.9164 matched with DB +City: Groves, state: Texas, Lat: 29.9457, Lng: -93.9164, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oswego, New York 43.4516 -76.5005 matched with DB +City: Oswego, state: New York, Lat: 43.4516, Lng: -76.5005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oswego, New York 43.4516 -76.5005 matched with DB +City: Oswego, state: Illinois, Lat: 41.6834, Lng: -88.3372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Estelle, Louisiana 29.8447 -90.1021 matched with DB +City: Estelle, state: Louisiana, Lat: 29.8447, Lng: -90.1021, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake St. Louis, Missouri 38.7846 -90.7886 matched with DB +City: Lake St. Louis, state: Missouri, Lat: 38.7846, Lng: -90.7886, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Safety Harbor, Florida 28.0080 -82.6964 matched with DB +City: Safety Harbor, state: Florida, Lat: 28.008, Lng: -82.6964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Segundo, California 33.9170 -118.4018 matched with DB +City: El Segundo, state: California, Lat: 33.917, Lng: -118.4018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upper Grand Lagoon, Florida 30.1690 -85.7407 matched with DB +City: Upper Grand Lagoon, state: Florida, Lat: 30.169, Lng: -85.7407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cañon City, Colorado 38.4430 -105.2203 matched with DB +City: Canon City, state: Colorado, Lat: 38.443, Lng: -105.2203, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tifton, Georgia 31.4624 -83.5203 matched with DB +City: Tifton, state: Georgia, Lat: 31.4624, Lng: -83.5203, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Massapequa Park, New York 40.6817 -73.4496 matched with DB +City: Massapequa Park, state: New York, Lat: 40.6817, Lng: -73.4496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwalk, Ohio 41.2443 -82.6088 matched with DB +City: Norwalk, state: Ohio, Lat: 41.2443, Lng: -82.6088, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Ohio 41.2443 -82.6088 matched with DB +City: Norwalk, state: Connecticut, Lat: 41.1144, Lng: -73.4215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Ohio 41.2443 -82.6088 matched with DB +City: Norwalk, state: Iowa, Lat: 41.4895, Lng: -93.6913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Ohio 41.2443 -82.6088 matched with DB +City: Norwalk, state: California, Lat: 33.9069, Lng: -118.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Virginia 36.6181 -82.1604 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Virginia 36.6181 -82.1604 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Virginia 36.6181 -82.1604 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Virginia 36.6181 -82.1604 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Virginia 36.6181 -82.1604 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Addison, Texas 32.9590 -96.8355 matched with DB +City: Addison, state: Illinois, Lat: 41.9313, Lng: -88.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Addison, Texas 32.9590 -96.8355 matched with DB +City: Addison, state: Texas, Lat: 32.959, Lng: -96.8355, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milledgeville, Georgia 33.0874 -83.2414 matched with DB +City: Milledgeville, state: Georgia, Lat: 33.0874, Lng: -83.2414, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Indiana 40.8810 -85.5063 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Indiana 40.8810 -85.5063 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Indiana 40.8810 -85.5063 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Indiana 40.8810 -85.5063 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Washington, New York 40.8268 -73.6765 matched with DB +City: Port Washington, state: Wisconsin, Lat: 43.3846, Lng: -87.8855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Port Washington, New York 40.8268 -73.6765 matched with DB +City: Port Washington, state: New York, Lat: 40.8268, Lng: -73.6765, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wixom, Michigan 42.5243 -83.5346 matched with DB +City: Wixom, state: Michigan, Lat: 42.5243, Lng: -83.5346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pendleton, Oregon 45.6757 -118.8201 matched with DB +City: Pendleton, state: Oregon, Lat: 45.6757, Lng: -118.8201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hannibal, Missouri 39.7098 -91.3939 matched with DB +City: Hannibal, state: Missouri, Lat: 39.7098, Lng: -91.3939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gainesville, Virginia 38.7931 -77.6347 matched with DB +City: Gainesville, state: Virginia, Lat: 38.7931, Lng: -77.6347, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Virginia 38.7931 -77.6347 matched with DB +City: Gainesville, state: Georgia, Lat: 34.2902, Lng: -83.8294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Virginia 38.7931 -77.6347 matched with DB +City: Gainesville, state: Florida, Lat: 29.6804, Lng: -82.3459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Virginia 38.7931 -77.6347 matched with DB +City: Gainesville, state: Texas, Lat: 33.639, Lng: -97.1487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, Washington 46.9757 -123.8094 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Washington 46.9757 -123.8094 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Washington 46.9757 -123.8094 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Washington 46.9757 -123.8094 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Washington 46.9757 -123.8094 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dallas, Oregon 44.9221 -123.3130 matched with DB +City: Dallas, state: Pennsylvania, Lat: 41.3608, Lng: -75.9656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Oregon 44.9221 -123.3130 matched with DB +City: Dallas, state: Georgia, Lat: 33.9152, Lng: -84.8416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Oregon 44.9221 -123.3130 matched with DB +City: Dallas, state: Oregon, Lat: 44.9221, Lng: -123.313, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Oregon 44.9221 -123.3130 matched with DB +City: Dallas, state: Texas, Lat: 32.7935, Lng: -96.7667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Myrtle Grove, Florida 30.4158 -87.3027 matched with DB +City: Myrtle Grove, state: North Carolina, Lat: 34.123, Lng: -77.8834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Myrtle Grove, Florida 30.4158 -87.3027 matched with DB +City: Myrtle Grove, state: Florida, Lat: 30.4158, Lng: -87.3027, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adelphi, Maryland 39.0017 -76.9649 matched with DB +City: Adelphi, state: Maryland, Lat: 39.0017, Lng: -76.9649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Heber, Utah 40.5070 -111.3986 matched with DB +City: Heber, state: Utah, Lat: 40.507, Lng: -111.3986, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton Bays, New York 40.8695 -72.5225 matched with DB +City: Hampton Bays, state: New York, Lat: 40.8695, Lng: -72.5225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeview, Illinois 41.7403 -87.8067 matched with DB +City: Bridgeview, state: Illinois, Lat: 41.7403, Lng: -87.8067, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashwaubenon, Wisconsin 44.4796 -88.0889 matched with DB +City: Ashwaubenon, state: Wisconsin, Lat: 44.4796, Lng: -88.0889, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powder Springs, Georgia 33.8659 -84.6840 matched with DB +City: Powder Springs, state: Georgia, Lat: 33.8659, Lng: -84.684, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McKinleyville, California 40.9488 -124.0857 matched with DB +City: McKinleyville, state: California, Lat: 40.9488, Lng: -124.0857, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laconia, New Hampshire 43.5725 -71.4775 matched with DB +City: Laconia, state: New Hampshire, Lat: 43.5725, Lng: -71.4775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belle Glade, Florida 26.6916 -80.6656 matched with DB +City: Belle Glade, state: Florida, Lat: 26.6916, Lng: -80.6656, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colonial Park, Pennsylvania 40.2987 -76.8069 matched with DB +City: Colonial Park, state: Pennsylvania, Lat: 40.2987, Lng: -76.8069, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmingville, New York 40.8390 -73.0404 matched with DB +City: Farmingville, state: New York, Lat: 40.839, Lng: -73.0404, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Milford, New Jersey 40.9337 -74.0196 matched with DB +City: New Milford, state: New Jersey, Lat: 40.9337, Lng: -74.0196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Illinois 37.7345 -88.9420 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Illinois 37.7345 -88.9420 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Illinois 37.7345 -88.9420 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Illinois 37.7345 -88.9420 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Illinois 37.7345 -88.9420 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pampa, Texas 35.5479 -100.9651 matched with DB +City: Pampa, state: Texas, Lat: 35.5479, Lng: -100.9651, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Ohio 40.3854 -82.4737 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Ohio 40.3854 -82.4737 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Ohio 40.3854 -82.4737 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Ohio 40.3854 -82.4737 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Ohio 40.3854 -82.4737 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moraga, California 37.8439 -122.1225 matched with DB +City: Moraga, state: California, Lat: 37.8439, Lng: -122.1225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Defiance, Ohio 41.2813 -84.3657 matched with DB +City: Defiance, state: Ohio, Lat: 41.2813, Lng: -84.3657, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bostonia, California 32.8189 -116.9480 matched with DB +City: Bostonia, state: California, Lat: 32.8189, Lng: -116.948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Damascus, Maryland 39.2701 -77.1957 matched with DB +City: Damascus, state: Maryland, Lat: 39.2701, Lng: -77.1957, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Damascus, Maryland 39.2701 -77.1957 matched with DB +City: Damascus, state: Oregon, Lat: 45.4233, Lng: -122.4436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hot Springs Village, Arkansas 34.6566 -92.9643 matched with DB +City: Hot Springs Village, state: Arkansas, Lat: 34.6566, Lng: -92.9643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mattoon, Illinois 39.4774 -88.3623 matched with DB +City: Mattoon, state: Illinois, Lat: 39.4774, Lng: -88.3623, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washougal, Washington 45.5825 -122.3451 matched with DB +City: Washougal, state: Washington, Lat: 45.5825, Lng: -122.3451, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, Mississippi 30.3608 -89.1651 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Mississippi 30.3608 -89.1651 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Mississippi 30.3608 -89.1651 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Truckee, California 39.3455 -120.1848 matched with DB +City: Truckee, state: California, Lat: 39.3455, Lng: -120.1848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmetto Estates, Florida 25.6211 -80.3616 matched with DB +City: Palmetto Estates, state: Florida, Lat: 25.6211, Lng: -80.3616, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunland Park, New Mexico 31.8201 -106.5958 matched with DB +City: Sunland Park, state: New Mexico, Lat: 31.8201, Lng: -106.5958, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Havelock, North Carolina 34.9078 -76.8987 matched with DB +City: Havelock, state: North Carolina, Lat: 34.9078, Lng: -76.8987, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Donna, Texas 26.1468 -98.0559 matched with DB +City: Donna, state: Texas, Lat: 26.1468, Lng: -98.0559, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Port Richey, Florida 28.2468 -82.7170 matched with DB +City: New Port Richey, state: Florida, Lat: 28.2468, Lng: -82.717, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Utah 40.9284 -111.8848 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Utah 40.9284 -111.8848 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kings Park, New York 40.8881 -73.2475 matched with DB +City: Kings Park, state: New York, Lat: 40.8881, Lng: -73.2475, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vincennes, Indiana 38.6759 -87.5102 matched with DB +City: Vincennes, state: Indiana, Lat: 38.6759, Lng: -87.5102, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Vista, Nebraska 41.1816 -96.0664 matched with DB +City: La Vista, state: Nebraska, Lat: 41.1816, Lng: -96.0664, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Firestone, Colorado 40.1565 -104.9494 matched with DB +City: Firestone, state: Colorado, Lat: 40.1565, Lng: -104.9494, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond Hill, Georgia 31.9012 -81.3125 matched with DB +City: Richmond Hill, state: Georgia, Lat: 31.9012, Lng: -81.3125, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westchester, Illinois 41.8492 -87.8906 matched with DB +City: Westchester, state: Illinois, Lat: 41.8492, Lng: -87.8906, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westchester, Illinois 41.8492 -87.8906 matched with DB +City: Westchester, state: Florida, Lat: 25.7471, Lng: -80.3523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holly Springs, Georgia 34.1681 -84.4847 matched with DB +City: Holly Springs, state: Georgia, Lat: 34.1681, Lng: -84.4847, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Holly Springs, Georgia 34.1681 -84.4847 matched with DB +City: Holly Springs, state: North Carolina, Lat: 35.6526, Lng: -78.8399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murraysville, North Carolina 34.2919 -77.8429 matched with DB +City: Murraysville, state: North Carolina, Lat: 34.2919, Lng: -77.8429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferndale, Maryland 39.1869 -76.6331 matched with DB +City: Ferndale, state: Michigan, Lat: 42.4592, Lng: -83.1313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Maryland 39.1869 -76.6331 matched with DB +City: Ferndale, state: Maryland, Lat: 39.1869, Lng: -76.6331, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Maryland 39.1869 -76.6331 matched with DB +City: Ferndale, state: Washington, Lat: 48.8526, Lng: -122.5894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hueytown, Alabama 33.4239 -87.0220 matched with DB +City: Hueytown, state: Alabama, Lat: 33.4239, Lng: -87.022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaver Dam, Wisconsin 43.4688 -88.8309 matched with DB +City: Beaver Dam, state: Wisconsin, Lat: 43.4688, Lng: -88.8309, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calera, Alabama 33.1254 -86.7449 matched with DB +City: Calera, state: Alabama, Lat: 33.1254, Lng: -86.7449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Mary, Florida 28.7592 -81.3360 matched with DB +City: Lake Mary, state: Florida, Lat: 28.7592, Lng: -81.336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenmont, Maryland 39.0698 -77.0467 matched with DB +City: Glenmont, state: Maryland, Lat: 39.0698, Lng: -77.0467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millbrook, Alabama 32.5027 -86.3737 matched with DB +City: Millbrook, state: Alabama, Lat: 32.5027, Lng: -86.3737, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Wing, Minnesota 44.5817 -92.6036 matched with DB +City: Red Wing, state: Minnesota, Lat: 44.5817, Lng: -92.6036, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bull Run, Virginia 38.7802 -77.5204 matched with DB +City: Bull Run, state: Virginia, Lat: 38.7802, Lng: -77.5204, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearlake, California 38.9589 -122.6330 matched with DB +City: Clearlake, state: California, Lat: 38.9589, Lng: -122.633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton, Illinois 40.6135 -89.4669 matched with DB +City: Morton, state: Illinois, Lat: 40.6135, Lng: -89.4669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Three Lakes, Florida 25.6415 -80.4000 matched with DB +City: Three Lakes, state: Florida, Lat: 25.6415, Lng: -80.4, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio Linda, California 38.6875 -121.4417 matched with DB +City: Rio Linda, state: California, Lat: 38.6875, Lng: -121.4417, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wailuku, Hawaii 20.8834 -156.5059 matched with DB +City: Wailuku, state: Hawaii, Lat: 20.8834, Lng: -156.5059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Club Hills, Illinois 41.5636 -87.7251 matched with DB +City: Country Club Hills, state: Illinois, Lat: 41.5636, Lng: -87.7251, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrington, Florida 30.3835 -87.2946 matched with DB +City: Warrington, state: Florida, Lat: 30.3835, Lng: -87.2946, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrington, Florida 30.3835 -87.2946 matched with DB +City: Warrington, state: Pennsylvania, Lat: 40.2489, Lng: -75.158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Humble, Texas 29.9921 -95.2655 matched with DB +City: Humble, state: Texas, Lat: 29.9921, Lng: -95.2655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Menomonie, Wisconsin 44.8893 -91.9084 matched with DB +City: Menomonie, state: Wisconsin, Lat: 44.8893, Lng: -91.9084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Richland, Washington 46.3115 -119.3999 matched with DB +City: West Richland, state: Washington, Lat: 46.3115, Lng: -119.3999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ada, Oklahoma 34.7662 -96.6681 matched with DB +City: Ada, state: Oklahoma, Lat: 34.7662, Lng: -96.6681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vero Beach, Florida 27.6463 -80.3930 matched with DB +City: Vero Beach, state: Florida, Lat: 27.6463, Lng: -80.393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, New Jersey 40.7586 -74.4169 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, New Jersey 40.7586 -74.4169 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, New Jersey 40.7586 -74.4169 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, New Jersey 40.7586 -74.4169 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, New Jersey 40.7586 -74.4169 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Highland Park, Virginia 37.5770 -77.3865 matched with DB +City: East Highland Park, state: Virginia, Lat: 37.577, Lng: -77.3865, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ukiah, California 39.1464 -123.2105 matched with DB +City: Ukiah, state: California, Lat: 39.1464, Lng: -123.2105, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ham Lake, Minnesota 45.2545 -93.2039 matched with DB +City: Ham Lake, state: Minnesota, Lat: 45.2545, Lng: -93.2039, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Indiana 38.3933 -86.9402 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Indiana 38.3933 -86.9402 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillcrest Heights, Maryland 38.8373 -76.9641 matched with DB +City: Hillcrest Heights, state: Maryland, Lat: 38.8373, Lng: -76.9641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Indiana 41.2448 -85.8465 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairburn, Georgia 33.5496 -84.5914 matched with DB +City: Fairburn, state: Georgia, Lat: 33.5496, Lng: -84.5914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Wales, Florida 27.9195 -81.5961 matched with DB +City: Lake Wales, state: Florida, Lat: 27.9195, Lng: -81.5961, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fillmore, California 34.3989 -118.9174 matched with DB +City: Fillmore, state: California, Lat: 34.3989, Lng: -118.9174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ojus, Florida 25.9563 -80.1606 matched with DB +City: Ojus, state: Florida, Lat: 25.9563, Lng: -80.1606, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Texas 30.5729 -97.4268 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Texas 30.5729 -97.4268 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenn Heights, Texas 32.5506 -96.8548 matched with DB +City: Glenn Heights, state: Texas, Lat: 32.5506, Lng: -96.8548, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albemarle, North Carolina 35.3594 -80.1915 matched with DB +City: Albemarle, state: North Carolina, Lat: 35.3594, Lng: -80.1915, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverly, Maryland 39.1064 -76.9995 matched with DB +City: Cloverly, state: Maryland, Lat: 39.1064, Lng: -76.9995, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburndale, Florida 28.0963 -81.8012 matched with DB +City: Auburndale, state: Florida, Lat: 28.0963, Lng: -81.8012, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl River, New York 41.0615 -74.0047 matched with DB +City: Pearl River, state: New York, Lat: 41.0615, Lng: -74.0047, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, Maryland 39.5151 -76.1733 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Maryland 39.5151 -76.1733 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Maryland 39.5151 -76.1733 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Maryland 39.5151 -76.1733 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Maryland 39.5151 -76.1733 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spanish Springs, Nevada 39.6568 -119.6694 matched with DB +City: Spanish Springs, state: Nevada, Lat: 39.6568, Lng: -119.6694, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Pennsylvania 39.8118 -76.9836 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Pennsylvania 39.8118 -76.9836 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Pennsylvania 39.8118 -76.9836 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Pennsylvania 39.8118 -76.9836 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Pennsylvania 39.8118 -76.9836 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Pennsylvania 39.8118 -76.9836 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dyer, Indiana 41.4977 -87.5090 matched with DB +City: Dyer, state: Indiana, Lat: 41.4977, Lng: -87.509, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, Virginia 38.8996 -77.2597 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, Virginia 38.8996 -77.2597 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dentsville, South Carolina 34.0754 -80.9547 matched with DB +City: Dentsville, state: South Carolina, Lat: 34.0754, Lng: -80.9547, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tahlequah, Oklahoma 35.9112 -94.9770 matched with DB +City: Tahlequah, state: Oklahoma, Lat: 35.9112, Lng: -94.977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollins, Virginia 37.3434 -79.9534 matched with DB +City: Hollins, state: Virginia, Lat: 37.3434, Lng: -79.9534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Radford, Virginia 37.1229 -80.5587 matched with DB +City: Radford, state: Virginia, Lat: 37.1229, Lng: -80.5587, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Payson, Arizona 34.2433 -111.3195 matched with DB +City: Payson, state: Utah, Lat: 40.0355, Lng: -111.739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Payson, Arizona 34.2433 -111.3195 matched with DB +City: Payson, state: Arizona, Lat: 34.2433, Lng: -111.3195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mercedes, Texas 26.1533 -97.9128 matched with DB +City: Mercedes, state: Texas, Lat: 26.1533, Lng: -97.9128, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview Heights, Illinois 38.5974 -90.0053 matched with DB +City: Fairview Heights, state: Illinois, Lat: 38.5974, Lng: -90.0053, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fullerton, Pennsylvania 40.6309 -75.4834 matched with DB +City: Fullerton, state: California, Lat: 33.8841, Lng: -117.9279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fullerton, Pennsylvania 40.6309 -75.4834 matched with DB +City: Fullerton, state: Pennsylvania, Lat: 40.6309, Lng: -75.4834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Arlington, New Jersey 40.7874 -74.1273 matched with DB +City: North Arlington, state: New Jersey, Lat: 40.7874, Lng: -74.1273, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grosse Pointe Woods, Michigan 42.4366 -82.8987 matched with DB +City: Grosse Pointe Woods, state: Michigan, Lat: 42.4366, Lng: -82.8987, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawfordsville, Indiana 40.0428 -86.8976 matched with DB +City: Crawfordsville, state: Indiana, Lat: 40.0428, Lng: -86.8976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muscle Shoals, Alabama 34.7432 -87.6343 matched with DB +City: Muscle Shoals, state: Alabama, Lat: 34.7432, Lng: -87.6343, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Dora, Florida 28.8142 -81.6344 matched with DB +City: Mount Dora, state: Florida, Lat: 28.8142, Lng: -81.6344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunnyside, Washington 46.3157 -120.0058 matched with DB +City: Sunnyside, state: Washington, Lat: 46.3157, Lng: -120.0058, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poplar Bluff, Missouri 36.7632 -90.4135 matched with DB +City: Poplar Bluff, state: Missouri, Lat: 36.7632, Lng: -90.4135, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Arizona 31.3602 -109.5394 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Arizona 31.3602 -109.5394 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Arizona 31.3602 -109.5394 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Drum, New York 44.0450 -75.7845 matched with DB +City: Fort Drum, state: New York, Lat: 44.045, Lng: -75.7845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Minnesota 45.1794 -93.8644 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Minnesota 45.1794 -93.8644 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Welby, Colorado 39.8403 -104.9655 matched with DB +City: Welby, state: Colorado, Lat: 39.8403, Lng: -104.9655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, Alabama 33.6447 -86.6852 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Allen, Virginia 37.6660 -77.4838 matched with DB +City: Glen Allen, state: Virginia, Lat: 37.666, Lng: -77.4838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkway, California 38.4993 -121.4520 matched with DB +City: Parkway, state: California, Lat: 38.4993, Lng: -121.452, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Artesia, California 33.8676 -118.0805 matched with DB +City: Artesia, state: California, Lat: 33.8676, Lng: -118.0805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Artesia, California 33.8676 -118.0805 matched with DB +City: Artesia, state: New Mexico, Lat: 32.8497, Lng: -104.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chickasha, Oklahoma 35.0409 -97.9474 matched with DB +City: Chickasha, state: Oklahoma, Lat: 35.0409, Lng: -97.9474, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Opa-locka, Florida 25.8997 -80.2551 matched with DB +City: Opa-locka, state: Florida, Lat: 25.8997, Lng: -80.2551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hermitage, Pennsylvania 41.2305 -80.4413 matched with DB +City: Hermitage, state: Pennsylvania, Lat: 41.2305, Lng: -80.4413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemay, Missouri 38.5325 -90.2845 matched with DB +City: Lemay, state: Missouri, Lat: 38.5325, Lng: -90.2845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut Park, California 33.9682 -118.2220 matched with DB +City: Walnut Park, state: California, Lat: 33.9682, Lng: -118.222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stallings, North Carolina 35.1088 -80.6598 matched with DB +City: Stallings, state: North Carolina, Lat: 35.1088, Lng: -80.6598, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mastic Beach, New York 40.7664 -72.8369 matched with DB +City: Mastic Beach, state: New York, Lat: 40.7664, Lng: -72.8369, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berea, South Carolina 34.8802 -82.4650 matched with DB +City: Berea, state: Ohio, Lat: 41.3696, Lng: -81.8641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, South Carolina 34.8802 -82.4650 matched with DB +City: Berea, state: Kentucky, Lat: 37.5904, Lng: -84.2898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, South Carolina 34.8802 -82.4650 matched with DB +City: Berea, state: South Carolina, Lat: 34.8802, Lng: -82.465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Griffith, Indiana 41.5277 -87.4239 matched with DB +City: Griffith, state: Indiana, Lat: 41.5277, Lng: -87.4239, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean Pointe, Hawaii 21.3145 -158.0289 matched with DB +City: Ocean Pointe, state: Hawaii, Lat: 21.3145, Lng: -158.0289, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dyersburg, Tennessee 36.0465 -89.3777 matched with DB +City: Dyersburg, state: Tennessee, Lat: 36.0465, Lng: -89.3777, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Houston, Texas 29.6611 -95.2285 matched with DB +City: South Houston, state: Texas, Lat: 29.6611, Lng: -95.2285, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hibbing, Minnesota 47.3980 -92.9486 matched with DB +City: Hibbing, state: Minnesota, Lat: 47.398, Lng: -92.9486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Falls, Wisconsin 44.8609 -92.6247 matched with DB +City: River Falls, state: Wisconsin, Lat: 44.8609, Lng: -92.6247, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Four Corners, Oregon 44.9290 -122.9732 matched with DB +City: Four Corners, state: Texas, Lat: 29.6705, Lng: -95.6596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Four Corners, Oregon 44.9290 -122.9732 matched with DB +City: Four Corners, state: Oregon, Lat: 44.929, Lng: -122.9732, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troutdale, Oregon 45.5372 -122.3955 matched with DB +City: Troutdale, state: Oregon, Lat: 45.5372, Lng: -122.3955, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sikeston, Missouri 36.8854 -89.5877 matched with DB +City: Sikeston, state: Missouri, Lat: 36.8854, Lng: -89.5877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sayville, New York 40.7478 -73.0840 matched with DB +City: Sayville, state: New York, Lat: 40.7478, Lng: -73.084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, Illinois 41.8072 -87.8741 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Illinois 41.8072 -87.8741 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Illinois 41.8072 -87.8741 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saraland, Alabama 30.8479 -88.1004 matched with DB +City: Saraland, state: Alabama, Lat: 30.8479, Lng: -88.1004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ripon, California 37.7417 -121.1310 matched with DB +City: Ripon, state: California, Lat: 37.7417, Lng: -121.131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Wisconsin 44.4592 -87.9550 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Wisconsin 44.4592 -87.9550 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Wisconsin 44.4592 -87.9550 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South River, New Jersey 40.4455 -74.3783 matched with DB +City: South River, state: New Jersey, Lat: 40.4455, Lng: -74.3783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Tennessee 35.8783 -83.7669 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Tennessee 35.8783 -83.7669 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eloy, Arizona 32.7470 -111.5992 matched with DB +City: Eloy, state: Arizona, Lat: 32.747, Lng: -111.5992, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Texas 33.1586 -94.9727 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Texas 33.1586 -94.9727 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Texas 33.1586 -94.9727 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Texas 33.1586 -94.9727 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Texas 33.1586 -94.9727 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Texas 33.1586 -94.9727 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dickson, Tennessee 36.0637 -87.3665 matched with DB +City: Dickson, state: Tennessee, Lat: 36.0637, Lng: -87.3665, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardendale, Alabama 33.6677 -86.8069 matched with DB +City: Gardendale, state: Alabama, Lat: 33.6677, Lng: -86.8069, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grovetown, Georgia 33.4503 -82.2073 matched with DB +City: Grovetown, state: Georgia, Lat: 33.4503, Lng: -82.2073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stone Ridge, Virginia 38.9294 -77.5557 matched with DB +City: Stone Ridge, state: Virginia, Lat: 38.9294, Lng: -77.5557, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lady Lake, Florida 28.9241 -81.9299 matched with DB +City: Lady Lake, state: Florida, Lat: 28.9241, Lng: -81.9299, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay Village, Ohio 41.4851 -81.9317 matched with DB +City: Bay Village, state: Ohio, Lat: 41.4851, Lng: -81.9317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Mohave, Arizona 35.0004 -114.5748 matched with DB +City: Fort Mohave, state: Arizona, Lat: 35.0004, Lng: -114.5748, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hewitt, Texas 31.4520 -97.1960 matched with DB +City: Hewitt, state: Texas, Lat: 31.452, Lng: -97.196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sulphur Springs, Texas 33.1421 -95.6122 matched with DB +City: Sulphur Springs, state: Texas, Lat: 33.1421, Lng: -95.6122, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Home, Idaho 43.1324 -115.6970 matched with DB +City: Mountain Home, state: Arkansas, Lat: 36.3351, Lng: -92.384, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mountain Home, Idaho 43.1324 -115.6970 matched with DB +City: Mountain Home, state: Idaho, Lat: 43.1324, Lng: -115.697, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Azalea Park, Florida 28.5473 -81.2956 matched with DB +City: Azalea Park, state: Florida, Lat: 28.5473, Lng: -81.2956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Americus, Georgia 32.0736 -84.2248 matched with DB +City: Americus, state: Georgia, Lat: 32.0736, Lng: -84.2248, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lithia Springs, Georgia 33.7811 -84.6487 matched with DB +City: Lithia Springs, state: Georgia, Lat: 33.7811, Lng: -84.6487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandville, Michigan 42.9004 -85.7564 matched with DB +City: Grandville, state: Michigan, Lat: 42.9004, Lng: -85.7564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Hunt, Virginia 38.7361 -77.0589 matched with DB +City: Fort Hunt, state: Virginia, Lat: 38.7361, Lng: -77.0589, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngsville, Louisiana 30.0963 -91.9968 matched with DB +City: Youngsville, state: Louisiana, Lat: 30.0963, Lng: -91.9968, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Dalles, Oregon 45.6053 -121.1818 matched with DB +City: The Dalles, state: Oregon, Lat: 45.6053, Lng: -121.1818, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Illinois 40.7050 -89.4340 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Georgia 32.5360 -82.9280 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Georgia 32.5360 -82.9280 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Georgia 32.5360 -82.9280 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Simons, Georgia 31.1775 -81.3857 matched with DB +City: St. Simons, state: Georgia, Lat: 31.1775, Lng: -81.3857, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kerman, California 36.7248 -120.0625 matched with DB +City: Kerman, state: California, Lat: 36.7248, Lng: -120.0625, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, West Virginia 39.2862 -80.3232 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, West Virginia 39.2862 -80.3232 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, Indiana 40.2810 -86.5212 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Indiana 40.2810 -86.5212 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Indiana 40.2810 -86.5212 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Viera West, Florida 28.2467 -80.7387 matched with DB +City: Viera West, state: Florida, Lat: 28.2467, Lng: -80.7387, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coos Bay, Oregon 43.3789 -124.2330 matched with DB +City: Coos Bay, state: Oregon, Lat: 43.3789, Lng: -124.233, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marco Island, Florida 25.9330 -81.6993 matched with DB +City: Marco Island, state: Florida, Lat: 25.933, Lng: -81.6993, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerfield, Maryland 38.9042 -76.8678 matched with DB +City: Summerfield, state: North Carolina, Lat: 36.1973, Lng: -79.8997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summerfield, Maryland 38.9042 -76.8678 matched with DB +City: Summerfield, state: Maryland, Lat: 38.9042, Lng: -76.8678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellmore, New York 40.6569 -73.5285 matched with DB +City: Bellmore, state: New York, Lat: 40.6569, Lng: -73.5285, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleburg Heights, Ohio 41.3696 -81.8150 matched with DB +City: Middleburg Heights, state: Ohio, Lat: 41.3696, Lng: -81.815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, California 32.8439 -116.7585 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, California 32.8439 -116.7585 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn Park, Maryland 39.2170 -76.6174 matched with DB +City: Brooklyn Park, state: Minnesota, Lat: 45.1112, Lng: -93.3505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn Park, Maryland 39.2170 -76.6174 matched with DB +City: Brooklyn Park, state: Maryland, Lat: 39.217, Lng: -76.6174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Ohio 41.3535 -83.1147 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Ohio 41.3535 -83.1147 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Ohio 41.3535 -83.1147 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Floral Park, New York 40.7227 -73.7029 matched with DB +City: Floral Park, state: New York, Lat: 40.7227, Lng: -73.7029, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Village, Texas 33.0897 -97.0615 matched with DB +City: Highland Village, state: Texas, Lat: 33.0897, Lng: -97.0615, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prospect Heights, Illinois 42.1039 -87.9267 matched with DB +City: Prospect Heights, state: Illinois, Lat: 42.1039, Lng: -87.9267, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seaford, New York 40.6678 -73.4922 matched with DB +City: Seaford, state: New York, Lat: 40.6678, Lng: -73.4922, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, North Dakota 46.9063 -98.6937 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, North Dakota 46.9063 -98.6937 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gatesville, Texas 31.4445 -97.7317 matched with DB +City: Gatesville, state: Texas, Lat: 31.4445, Lng: -97.7317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, Iowa 41.3629 -93.5652 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, Iowa 41.3629 -93.5652 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Overland, Missouri 38.6966 -90.3689 matched with DB +City: Overland, state: Missouri, Lat: 38.6966, Lng: -90.3689, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hugo, Minnesota 45.1671 -92.9588 matched with DB +City: Hugo, state: Minnesota, Lat: 45.1671, Lng: -92.9588, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Maryland 39.6066 -75.8209 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seven Oaks, South Carolina 34.0475 -81.1435 matched with DB +City: Seven Oaks, state: South Carolina, Lat: 34.0475, Lng: -81.1435, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Orchard, Washington 47.5163 -122.6610 matched with DB +City: Port Orchard, state: Washington, Lat: 47.5163, Lng: -122.661, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutland, Vermont 43.6092 -72.9783 matched with DB +City: Rutland, state: Vermont, Lat: 43.6092, Lng: -72.9783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rutland, Vermont 43.6092 -72.9783 matched with DB +City: Rutland, state: Massachusetts, Lat: 42.3848, Lng: -71.9673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Opelousas, Louisiana 30.5252 -92.0816 matched with DB +City: Opelousas, state: Louisiana, Lat: 30.5252, Lng: -92.0816, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niceville, Florida 30.5290 -86.4748 matched with DB +City: Niceville, state: Florida, Lat: 30.529, Lng: -86.4748, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westbury, New York 40.7599 -73.5891 matched with DB +City: Westbury, state: New York, Lat: 40.7599, Lng: -73.5891, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, Maine 44.5441 -69.6624 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thibodaux, Louisiana 29.7949 -90.8146 matched with DB +City: Thibodaux, state: Louisiana, Lat: 29.7949, Lng: -90.8146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Susanville, California 40.4206 -120.6132 matched with DB +City: Susanville, state: California, Lat: 40.4206, Lng: -120.6132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Florida 28.7752 -82.0075 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Florida 28.7752 -82.0075 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Live Oak, Texas 29.5545 -98.3404 matched with DB +City: Live Oak, state: Texas, Lat: 29.5545, Lng: -98.3404, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Live Oak, Texas 29.5545 -98.3404 matched with DB +City: Live Oak, state: California, Lat: 36.986, Lng: -121.9804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitewater, Wisconsin 42.8372 -88.7341 matched with DB +City: Whitewater, state: Wisconsin, Lat: 42.8372, Lng: -88.7341, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynden, Washington 48.9502 -122.4545 matched with DB +City: Lynden, state: Washington, Lat: 48.9502, Lng: -122.4545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wolf Trap, Virginia 38.9395 -77.2842 matched with DB +City: Wolf Trap, state: Virginia, Lat: 38.9395, Lng: -77.2842, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayden, Idaho 47.7680 -116.8040 matched with DB +City: Hayden, state: Idaho, Lat: 47.768, Lng: -116.804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southern Pines, North Carolina 35.1927 -79.4039 matched with DB +City: Southern Pines, state: North Carolina, Lat: 35.1927, Lng: -79.4039, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Wisconsin 44.8906 -89.5487 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Wisconsin 44.8906 -89.5487 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Wisconsin 44.8906 -89.5487 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Iowa 41.6963 -93.0403 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Iowa 41.6963 -93.0403 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Iowa 41.6963 -93.0403 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Iowa 41.6963 -93.0403 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grain Valley, Missouri 39.0171 -94.2084 matched with DB +City: Grain Valley, state: Missouri, Lat: 39.0171, Lng: -94.2084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Clemens, Michigan 42.5977 -82.8821 matched with DB +City: Mount Clemens, state: Michigan, Lat: 42.5977, Lng: -82.8821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Wisconsin 43.3223 -88.3784 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Wisconsin 43.3223 -88.3784 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Wisconsin 43.3223 -88.3784 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, South Dakota 43.7294 -98.0337 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chubbuck, Idaho 42.9263 -112.4623 matched with DB +City: Chubbuck, state: Idaho, Lat: 42.9263, Lng: -112.4623, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coto de Caza, California 33.5959 -117.5860 matched with DB +City: Coto de Caza, state: California, Lat: 33.5959, Lng: -117.586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longwood, Florida 28.7014 -81.3487 matched with DB +City: Longwood, state: Florida, Lat: 28.7014, Lng: -81.3487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Leonard Wood, Missouri 37.7562 -92.1274 matched with DB +City: Fort Leonard Wood, state: Missouri, Lat: 37.7562, Lng: -92.1274, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shively, Kentucky 38.1970 -85.8136 matched with DB +City: Shively, state: Kentucky, Lat: 38.197, Lng: -85.8136, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton Meadows, New Jersey 40.3347 -74.5651 matched with DB +City: Princeton Meadows, state: New Jersey, Lat: 40.3347, Lng: -74.5651, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Hill, South Carolina 33.7777 -79.0111 matched with DB +City: Red Hill, state: South Carolina, Lat: 33.7777, Lng: -79.0111, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Illinois 41.8439 -89.4794 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Illinois 41.8439 -89.4794 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southchase, Florida 28.3793 -81.3903 matched with DB +City: Southchase, state: Florida, Lat: 28.3793, Lng: -81.3903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Indiana 41.0676 -85.0174 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Indiana 41.0676 -85.0174 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scottsboro, Alabama 34.6438 -86.0491 matched with DB +City: Scottsboro, state: Alabama, Lat: 34.6438, Lng: -86.0491, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood Village, Colorado 39.6153 -104.9131 matched with DB +City: Greenwood Village, state: Colorado, Lat: 39.6153, Lng: -104.9131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Osos, California 35.3065 -120.8242 matched with DB +City: Los Osos, state: California, Lat: 35.3065, Lng: -120.8242, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rendon, Texas 32.5789 -97.2349 matched with DB +City: Rendon, state: Texas, Lat: 32.5789, Lng: -97.2349, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Palma, California 33.8504 -118.0407 matched with DB +City: La Palma, state: California, Lat: 33.8504, Lng: -118.0407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aldine, Texas 29.9123 -95.3784 matched with DB +City: Aldine, state: Texas, Lat: 29.9123, Lng: -95.3784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, New York 42.9987 -78.1802 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, New York 42.9987 -78.1802 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossville, Maryland 39.3572 -76.4767 matched with DB +City: Rossville, state: Maryland, Lat: 39.3572, Lng: -76.4767, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cherryland, California 37.6792 -122.1038 matched with DB +City: Cherryland, state: California, Lat: 37.6792, Lng: -122.1038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Missouri 37.1503 -94.3225 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Maryland 39.0451 -76.9885 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Maryland 39.0451 -76.9885 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Center, Washington 47.5086 -122.3479 matched with DB +City: White Center, state: Washington, Lat: 47.5086, Lng: -122.3479, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Traverse City, Michigan 44.7546 -85.6038 matched with DB +City: Traverse City, state: Michigan, Lat: 44.7546, Lng: -85.6038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andover, Kansas 37.6873 -97.1352 matched with DB +City: Andover, state: Minnesota, Lat: 45.2571, Lng: -93.3265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Kansas 37.6873 -97.1352 matched with DB +City: Andover, state: Kansas, Lat: 37.6873, Lng: -97.1352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Kansas 37.6873 -97.1352 matched with DB +City: Andover, state: Massachusetts, Lat: 42.6466, Lng: -71.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greeneville, Tennessee 36.1680 -82.8197 matched with DB +City: Greeneville, state: Tennessee, Lat: 36.168, Lng: -82.8197, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bemidji, Minnesota 47.4828 -94.8797 matched with DB +City: Bemidji, state: Minnesota, Lat: 47.4828, Lng: -94.8797, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northview, Michigan 43.0427 -85.6016 matched with DB +City: Northview, state: Michigan, Lat: 43.0427, Lng: -85.6016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yankton, South Dakota 42.8901 -97.3927 matched with DB +City: Yankton, state: South Dakota, Lat: 42.8901, Lng: -97.3927, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Nevada 39.2592 -119.5653 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Nevada 39.2592 -119.5653 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Nevada 39.2592 -119.5653 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartselle, Alabama 34.4391 -86.9396 matched with DB +City: Hartselle, state: Alabama, Lat: 34.4391, Lng: -86.9396, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Delaware 39.6015 -75.7473 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Delaware 39.6015 -75.7473 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berea, Kentucky 37.5904 -84.2898 matched with DB +City: Berea, state: Ohio, Lat: 41.3696, Lng: -81.8641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, Kentucky 37.5904 -84.2898 matched with DB +City: Berea, state: Kentucky, Lat: 37.5904, Lng: -84.2898, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, Kentucky 37.5904 -84.2898 matched with DB +City: Berea, state: South Carolina, Lat: 34.8802, Lng: -82.465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grimes, Iowa 41.6779 -93.7947 matched with DB +City: Grimes, state: Iowa, Lat: 41.6779, Lng: -93.7947, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Missouri 37.3792 -89.6522 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, Illinois 41.1641 -87.8452 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homosassa Springs, Florida 28.8119 -82.5392 matched with DB +City: Homosassa Springs, state: Florida, Lat: 28.8119, Lng: -82.5392, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Discovery Bay, California 37.9063 -121.5990 matched with DB +City: Discovery Bay, state: California, Lat: 37.9063, Lng: -121.599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, North Carolina 36.5027 -79.7412 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uvalde, Texas 29.2152 -99.7782 matched with DB +City: Uvalde, state: Texas, Lat: 29.2152, Lng: -99.7782, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manor, Texas 30.3562 -97.5227 matched with DB +City: Manor, state: Texas, Lat: 30.3562, Lng: -97.5227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manor, Texas 30.3562 -97.5227 matched with DB +City: Manor, state: Pennsylvania, Lat: 39.9848, Lng: -76.4216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fruitville, Florida 27.3328 -82.4616 matched with DB +City: Fruitville, state: Florida, Lat: 27.3328, Lng: -82.4616, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Park, Pennsylvania 40.5903 -80.0999 matched with DB +City: Franklin Park, state: Pennsylvania, Lat: 40.5903, Lng: -80.0999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, Pennsylvania 40.5903 -80.0999 matched with DB +City: Franklin Park, state: Illinois, Lat: 41.9361, Lng: -87.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, Pennsylvania 40.5903 -80.0999 matched with DB +City: Franklin Park, state: New Jersey, Lat: 40.4439, Lng: -74.5431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tenafly, New Jersey 40.9176 -73.9532 matched with DB +City: Tenafly, state: New Jersey, Lat: 40.9176, Lng: -73.9532, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ladson, South Carolina 33.0093 -80.1078 matched with DB +City: Ladson, state: South Carolina, Lat: 33.0093, Lng: -80.1078, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harper Woods, Michigan 42.4390 -82.9293 matched with DB +City: Harper Woods, state: Michigan, Lat: 42.439, Lng: -82.9293, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norridge, Illinois 41.9637 -87.8231 matched with DB +City: Norridge, state: Illinois, Lat: 41.9637, Lng: -87.8231, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chaparral, New Mexico 32.0442 -106.4060 matched with DB +City: Chaparral, state: New Mexico, Lat: 32.0442, Lng: -106.406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer Ranch, Florida 27.2286 -82.4672 matched with DB +City: Palmer Ranch, state: Florida, Lat: 27.2286, Lng: -82.4672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vincent, California 34.0983 -117.9238 matched with DB +City: Vincent, state: California, Lat: 34.0983, Lng: -117.9238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio Grande City, Texas 26.3808 -98.8215 matched with DB +City: Rio Grande City, state: Texas, Lat: 26.3808, Lng: -98.8215, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vail, Arizona 32.0217 -110.6937 matched with DB +City: Vail, state: Arizona, Lat: 32.0217, Lng: -110.6937, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, New Jersey 39.8769 -74.9724 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, New Jersey 39.8769 -74.9724 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, New Jersey 39.8769 -74.9724 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmview, Texas 26.2318 -98.3823 matched with DB +City: Palmview, state: Texas, Lat: 26.2318, Lng: -98.3823, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Asbury Park, New Jersey 40.2226 -74.0119 matched with DB +City: Asbury Park, state: New Jersey, Lat: 40.2226, Lng: -74.0119, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melissa, Texas 33.2891 -96.5573 matched with DB +City: Melissa, state: Texas, Lat: 33.2891, Lng: -96.5573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenn Dale, Maryland 38.9833 -76.8040 matched with DB +City: Glenn Dale, state: Maryland, Lat: 38.9833, Lng: -76.804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmington Island, Georgia 32.0033 -80.9752 matched with DB +City: Wilmington Island, state: Georgia, Lat: 32.0033, Lng: -80.9752, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnson City, New York 42.1230 -75.9624 matched with DB +City: Johnson City, state: New York, Lat: 42.123, Lng: -75.9624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnson City, New York 42.1230 -75.9624 matched with DB +City: Johnson City, state: Tennessee, Lat: 36.3406, Lng: -82.3806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macomb, Illinois 40.4709 -90.6807 matched with DB +City: Macomb, state: Illinois, Lat: 40.4709, Lng: -90.6807, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phillipsburg, New Jersey 40.6894 -75.1821 matched with DB +City: Phillipsburg, state: New Jersey, Lat: 40.6894, Lng: -75.1821, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Ohio 39.4461 -84.3667 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, Alabama 33.3262 -86.6300 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, Alabama 33.3262 -86.6300 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davidson, North Carolina 35.4840 -80.8247 matched with DB +City: Davidson, state: North Carolina, Lat: 35.484, Lng: -80.8247, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beech Grove, Indiana 39.7157 -86.0871 matched with DB +City: Beech Grove, state: Indiana, Lat: 39.7157, Lng: -86.0871, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gulf Shores, Alabama 30.2764 -87.7017 matched with DB +City: Gulf Shores, state: Alabama, Lat: 30.2764, Lng: -87.7017, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenlawn, New York 40.8632 -73.3646 matched with DB +City: Greenlawn, state: New York, Lat: 40.8632, Lng: -73.3646, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewa Beach, Hawaii 21.3181 -158.0073 matched with DB +City: Ewa Beach, state: Hawaii, Lat: 21.3181, Lng: -158.0073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kenmore, New York 42.9646 -78.8713 matched with DB +City: Kenmore, state: New York, Lat: 42.9646, Lng: -78.8713, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kenmore, New York 42.9646 -78.8713 matched with DB +City: Kenmore, state: Washington, Lat: 47.7516, Lng: -122.2489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berkley, Michigan 42.4986 -83.1853 matched with DB +City: Berkley, state: Michigan, Lat: 42.4986, Lng: -83.1853, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berkley, Michigan 42.4986 -83.1853 matched with DB +City: Berkley, state: Colorado, Lat: 39.8045, Lng: -105.0281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke Rapids, North Carolina 36.4452 -77.6490 matched with DB +City: Roanoke Rapids, state: North Carolina, Lat: 36.4452, Lng: -77.649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Depew, New York 42.9118 -78.7043 matched with DB +City: Depew, state: New York, Lat: 42.9118, Lng: -78.7043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vandalia, Ohio 39.8791 -84.1930 matched with DB +City: Vandalia, state: Ohio, Lat: 39.8791, Lng: -84.193, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferndale, Washington 48.8526 -122.5894 matched with DB +City: Ferndale, state: Michigan, Lat: 42.4592, Lng: -83.1313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Washington 48.8526 -122.5894 matched with DB +City: Ferndale, state: Maryland, Lat: 39.1869, Lng: -76.6331, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Washington 48.8526 -122.5894 matched with DB +City: Ferndale, state: Washington, Lat: 48.8526, Lng: -122.5894, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Cassel, New York 40.7602 -73.5649 matched with DB +City: New Cassel, state: New York, Lat: 40.7602, Lng: -73.5649, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gloversville, New York 43.0491 -74.3465 matched with DB +City: Gloversville, state: New York, Lat: 43.0491, Lng: -74.3465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hendersonville, North Carolina 35.3247 -82.4575 matched with DB +City: Hendersonville, state: Tennessee, Lat: 36.3063, Lng: -86.5997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hendersonville, North Carolina 35.3247 -82.4575 matched with DB +City: Hendersonville, state: North Carolina, Lat: 35.3247, Lng: -82.4575, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pacific Grove, California 36.6188 -121.9259 matched with DB +City: Pacific Grove, state: California, Lat: 36.6188, Lng: -121.9259, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tonawanda, New York 43.0105 -78.8805 matched with DB +City: Tonawanda, state: New York, Lat: 43.0105, Lng: -78.8805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canyon, Texas 34.9911 -101.9190 matched with DB +City: Canyon, state: Texas, Lat: 34.9911, Lng: -101.919, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eggertsville, New York 42.9665 -78.8065 matched with DB +City: Eggertsville, state: New York, Lat: 42.9665, Lng: -78.8065, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Park, Florida 25.9840 -80.1923 matched with DB +City: West Park, state: Florida, Lat: 25.984, Lng: -80.1923, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Talladega, Alabama 33.4333 -86.0986 matched with DB +City: Talladega, state: Alabama, Lat: 33.4333, Lng: -86.0986, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazel Park, Michigan 42.4619 -83.0977 matched with DB +City: Hazel Park, state: Michigan, Lat: 42.4619, Lng: -83.0977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Front Royal, Virginia 38.9260 -78.1838 matched with DB +City: Front Royal, state: Virginia, Lat: 38.926, Lng: -78.1838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Creek, Nevada 40.7450 -115.5983 matched with DB +City: Spring Creek, state: Nevada, Lat: 40.745, Lng: -115.5983, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Royse City, Texas 32.9762 -96.3175 matched with DB +City: Royse City, state: Texas, Lat: 32.9762, Lng: -96.3175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mineral Wells, Texas 32.8169 -98.0776 matched with DB +City: Mineral Wells, state: Texas, Lat: 32.8169, Lng: -98.0776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Kentucky 37.0048 -85.9263 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Kentucky 37.0048 -85.9263 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frederick, Colorado 40.1088 -104.9701 matched with DB +City: Frederick, state: Maryland, Lat: 39.4337, Lng: -77.4141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frederick, Colorado 40.1088 -104.9701 matched with DB +City: Frederick, state: Colorado, Lat: 40.1088, Lng: -104.9701, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Georgia 33.7990 -83.7161 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Farmingdale, New York 40.7175 -73.4473 matched with DB +City: South Farmingdale, state: New York, Lat: 40.7175, Lng: -73.4473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Missouri 37.6717 -92.6603 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockhart, Florida 28.6270 -81.4354 matched with DB +City: Lockhart, state: Florida, Lat: 28.627, Lng: -81.4354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockhart, Florida 28.6270 -81.4354 matched with DB +City: Lockhart, state: Texas, Lat: 29.8785, Lng: -97.6831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: California City, California 35.1578 -117.8721 matched with DB +City: California City, state: California, Lat: 35.1578, Lng: -117.8721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Ohio 40.0950 -83.0209 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Ohio 40.0950 -83.0209 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, North Carolina 36.3256 -78.4151 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, North Carolina 36.3256 -78.4151 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, North Carolina 36.3256 -78.4151 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, North Carolina 36.3256 -78.4151 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buda, Texas 30.0758 -97.8487 matched with DB +City: Buda, state: Texas, Lat: 30.0758, Lng: -97.8487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Park, New Jersey 40.5006 -74.4283 matched with DB +City: Highland Park, state: New Jersey, Lat: 40.5006, Lng: -74.4283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, New Jersey 40.5006 -74.4283 matched with DB +City: Highland Park, state: Michigan, Lat: 42.4052, Lng: -83.0977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, New Jersey 40.5006 -74.4283 matched with DB +City: Highland Park, state: Illinois, Lat: 42.1823, Lng: -87.8104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, New Jersey 40.5006 -74.4283 matched with DB +City: Highland Park, state: Texas, Lat: 32.8311, Lng: -96.8012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurinburg, North Carolina 34.7602 -79.4773 matched with DB +City: Laurinburg, state: North Carolina, Lat: 34.7602, Lng: -79.4773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Falls, Virginia 39.0110 -77.3013 matched with DB +City: Great Falls, state: Virginia, Lat: 39.011, Lng: -77.3013, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Great Falls, Virginia 39.0110 -77.3013 matched with DB +City: Great Falls, state: Montana, Lat: 47.5022, Lng: -111.2996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mastic, New York 40.8096 -72.8479 matched with DB +City: Mastic, state: New York, Lat: 40.8096, Lng: -72.8479, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West University Place, Texas 29.7157 -95.4321 matched with DB +City: West University Place, state: Texas, Lat: 29.7157, Lng: -95.4321, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland North, Washington 47.3374 -122.2812 matched with DB +City: Lakeland North, state: Washington, Lat: 47.3374, Lng: -122.2812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weigelstown, Pennsylvania 39.9852 -76.8306 matched with DB +City: Weigelstown, state: Pennsylvania, Lat: 39.9852, Lng: -76.8306, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Metuchen, New Jersey 40.5424 -74.3628 matched with DB +City: Metuchen, state: New Jersey, Lat: 40.5424, Lng: -74.3628, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hereford, Texas 34.8225 -102.4001 matched with DB +City: Hereford, state: Texas, Lat: 34.8225, Lng: -102.4001, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New Jersey 40.8182 -74.0022 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Georgia 33.5639 -84.4103 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Georgia 33.5639 -84.4103 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Georgia 33.5639 -84.4103 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Rancho Dominguez, California 33.8949 -118.1956 matched with DB +City: East Rancho Dominguez, state: California, Lat: 33.8949, Lng: -118.1956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory Hills, Illinois 41.7248 -87.8280 matched with DB +City: Hickory Hills, state: Illinois, Lat: 41.7248, Lng: -87.828, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Arbor, Maryland 38.9105 -76.8304 matched with DB +City: Lake Arbor, state: Maryland, Lat: 38.9105, Lng: -76.8304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Swansea, Illinois 38.5507 -89.9858 matched with DB +City: Swansea, state: Illinois, Lat: 38.5507, Lng: -89.9858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Swansea, Illinois 38.5507 -89.9858 matched with DB +City: Swansea, state: Massachusetts, Lat: 41.7571, Lng: -71.212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Springs, Virginia 37.5516 -77.3285 matched with DB +City: Highland Springs, state: Virginia, Lat: 37.5516, Lng: -77.3285, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oldsmar, Florida 28.0506 -82.6698 matched with DB +City: Oldsmar, state: Florida, Lat: 28.0506, Lng: -82.6698, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensburg, Pennsylvania 40.3113 -79.5445 matched with DB +City: Greensburg, state: Pennsylvania, Lat: 40.3113, Lng: -79.5445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greensburg, Pennsylvania 40.3113 -79.5445 matched with DB +City: Greensburg, state: Indiana, Lat: 39.3518, Lng: -85.5028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boulder City, Nevada 35.8407 -114.9257 matched with DB +City: Boulder City, state: Nevada, Lat: 35.8407, Lng: -114.9257, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Oak, Texas 32.5212 -96.7866 matched with DB +City: Red Oak, state: Texas, Lat: 32.5212, Lng: -96.7866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Illinois 41.7996 -89.6956 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Illinois 41.7996 -89.6956 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Illinois 41.7996 -89.6956 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest City, Florida 28.6619 -81.4444 matched with DB +City: Forest City, state: Florida, Lat: 28.6619, Lng: -81.4444, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salida, California 37.7083 -121.0842 matched with DB +City: Salida, state: California, Lat: 37.7083, Lng: -121.0842, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, North Carolina 35.2212 -81.0401 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, North Carolina 35.2212 -81.0401 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, North Carolina 35.2212 -81.0401 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, North Carolina 35.2212 -81.0401 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemon Hill, California 38.5172 -121.4573 matched with DB +City: Lemon Hill, state: California, Lat: 38.5172, Lng: -121.4573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Payne, Alabama 34.4559 -85.6965 matched with DB +City: Fort Payne, state: Alabama, Lat: 34.4559, Lng: -85.6965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tanque Verde, Arizona 32.2687 -110.7437 matched with DB +City: Tanque Verde, state: Arizona, Lat: 32.2687, Lng: -110.7437, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitefish Bay, Wisconsin 43.1131 -87.9003 matched with DB +City: Whitefish Bay, state: Wisconsin, Lat: 43.1131, Lng: -87.9003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waunakee, Wisconsin 43.1829 -89.4447 matched with DB +City: Waunakee, state: Wisconsin, Lat: 43.1829, Lng: -89.4447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexander City, Alabama 32.9229 -85.9358 matched with DB +City: Alexander City, state: Alabama, Lat: 32.9229, Lng: -85.9358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamstown, New Jersey 39.6874 -74.9786 matched with DB +City: Williamstown, state: New Jersey, Lat: 39.6874, Lng: -74.9786, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Missouri 38.5515 -91.0154 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksdale, Mississippi 34.1933 -90.5693 matched with DB +City: Clarksdale, state: Mississippi, Lat: 34.1933, Lng: -90.5693, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piney Green, North Carolina 34.7498 -77.3208 matched with DB +City: Piney Green, state: North Carolina, Lat: 34.7498, Lng: -77.3208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Wisconsin 44.9639 -92.7312 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wisconsin 44.9639 -92.7312 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wisconsin 44.9639 -92.7312 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wisconsin 44.9639 -92.7312 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wisconsin 44.9639 -92.7312 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deming, New Mexico 32.2631 -107.7525 matched with DB +City: Deming, state: New Mexico, Lat: 32.2631, Lng: -107.7525, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Havre de Grace, Maryland 39.5480 -76.1146 matched with DB +City: Havre de Grace, state: Maryland, Lat: 39.548, Lng: -76.1146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lilburn, Georgia 33.8897 -84.1364 matched with DB +City: Lilburn, state: Georgia, Lat: 33.8897, Lng: -84.1364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Illinois 38.3140 -88.9174 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Illinois 38.3140 -88.9174 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Illinois 38.3140 -88.9174 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Illinois 38.3140 -88.9174 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Illinois 38.3140 -88.9174 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramsey, New Jersey 41.0595 -74.1454 matched with DB +City: Ramsey, state: New Jersey, Lat: 41.0595, Lng: -74.1454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ramsey, New Jersey 41.0595 -74.1454 matched with DB +City: Ramsey, state: Minnesota, Lat: 45.2617, Lng: -93.4494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hammonton, New Jersey 39.6572 -74.7678 matched with DB +City: Hammonton, state: New Jersey, Lat: 39.6572, Lng: -74.7678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Bend, Kansas 38.3593 -98.8015 matched with DB +City: Great Bend, state: Kansas, Lat: 38.3593, Lng: -98.8015, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greendale, Wisconsin 42.9371 -88.0018 matched with DB +City: Greendale, state: Wisconsin, Lat: 42.9371, Lng: -88.0018, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Isla Vista, California 34.4128 -119.8614 matched with DB +City: Isla Vista, state: California, Lat: 34.4128, Lng: -119.8614, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antioch, Illinois 42.4742 -88.0721 matched with DB +City: Antioch, state: Illinois, Lat: 42.4742, Lng: -88.0721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Antioch, Illinois 42.4742 -88.0721 matched with DB +City: Antioch, state: California, Lat: 37.9787, Lng: -121.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gladeview, Florida 25.8395 -80.2368 matched with DB +City: Gladeview, state: Florida, Lat: 25.8395, Lng: -80.2368, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hershey, Pennsylvania 40.2806 -76.6458 matched with DB +City: Hershey, state: Pennsylvania, Lat: 40.2806, Lng: -76.6458, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Owosso, Michigan 42.9955 -84.1760 matched with DB +City: Owosso, state: Michigan, Lat: 42.9955, Lng: -84.176, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fraser, Michigan 42.5388 -82.9496 matched with DB +City: Fraser, state: Michigan, Lat: 42.5388, Lng: -82.9496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Stickney, Washington 47.8733 -122.2582 matched with DB +City: Lake Stickney, state: Washington, Lat: 47.8733, Lng: -122.2582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North New Hyde Park, New York 40.7460 -73.6876 matched with DB +City: North New Hyde Park, state: New York, Lat: 40.746, Lng: -73.6876, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flower Hill, Maryland 39.1676 -77.1824 matched with DB +City: Flower Hill, state: Maryland, Lat: 39.1676, Lng: -77.1824, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parlier, California 36.6087 -119.5434 matched with DB +City: Parlier, state: California, Lat: 36.6087, Lng: -119.5434, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chippewa Falls, Wisconsin 44.9358 -91.3902 matched with DB +City: Chippewa Falls, state: Wisconsin, Lat: 44.9358, Lng: -91.3902, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveton, Virginia 38.7605 -77.0980 matched with DB +City: Groveton, state: Virginia, Lat: 38.7605, Lng: -77.098, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hutchinson, Minnesota 44.8855 -94.3768 matched with DB +City: Hutchinson, state: Kansas, Lat: 38.0671, Lng: -97.9081, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hutchinson, Minnesota 44.8855 -94.3768 matched with DB +City: Hutchinson, state: Minnesota, Lat: 44.8855, Lng: -94.3768, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broadlands, Virginia 39.0168 -77.5167 matched with DB +City: Broadlands, state: Virginia, Lat: 39.0168, Lng: -77.5167, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Bluff, California 40.1735 -122.2413 matched with DB +City: Red Bluff, state: California, Lat: 40.1735, Lng: -122.2413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Falls Church, Virginia 38.8847 -77.1751 matched with DB +City: Falls Church, state: Virginia, Lat: 38.8847, Lng: -77.1751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Royal, South Carolina 32.3557 -80.7029 matched with DB +City: Port Royal, state: South Carolina, Lat: 32.3557, Lng: -80.7029, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Key Biscayne, Florida 25.6908 -80.1653 matched with DB +City: Key Biscayne, state: Florida, Lat: 25.6908, Lng: -80.1653, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem Lakes, Wisconsin 42.5366 -88.1306 matched with DB +City: Salem Lakes, state: Wisconsin, Lat: 42.5366, Lng: -88.1306, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belvedere Park, Georgia 33.7489 -84.2599 matched with DB +City: Belvedere Park, state: Georgia, Lat: 33.7489, Lng: -84.2599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarkston, Georgia 33.8117 -84.2403 matched with DB +City: Clarkston, state: Georgia, Lat: 33.8117, Lng: -84.2403, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moultrie, Georgia 31.1591 -83.7708 matched with DB +City: Moultrie, state: Georgia, Lat: 31.1591, Lng: -83.7708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reidsville, North Carolina 36.3376 -79.6725 matched with DB +City: Reidsville, state: North Carolina, Lat: 36.3376, Lng: -79.6725, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middlesex, New Jersey 40.5744 -74.5011 matched with DB +City: Middlesex, state: New Jersey, Lat: 40.5744, Lng: -74.5011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corinth, Mississippi 34.9474 -88.5143 matched with DB +City: Corinth, state: Mississippi, Lat: 34.9474, Lng: -88.5143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Corinth, Mississippi 34.9474 -88.5143 matched with DB +City: Corinth, state: Texas, Lat: 33.1434, Lng: -97.0682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, New Hampshire 43.6353 -72.2531 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McCalla, Alabama 33.3023 -87.0302 matched with DB +City: McCalla, state: Alabama, Lat: 33.3023, Lng: -87.0302, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morris, Illinois 41.3749 -88.4304 matched with DB +City: Morris, state: Illinois, Lat: 41.3749, Lng: -88.4304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morris, Illinois 41.3749 -88.4304 matched with DB +City: Morris, state: New Jersey, Lat: 40.7959, Lng: -74.4945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockhart, Texas 29.8785 -97.6831 matched with DB +City: Lockhart, state: Florida, Lat: 28.627, Lng: -81.4354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockhart, Texas 29.8785 -97.6831 matched with DB +City: Lockhart, state: Texas, Lat: 29.8785, Lng: -97.6831, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santaquin, Utah 39.9708 -111.7941 matched with DB +City: Santaquin, state: Utah, Lat: 39.9708, Lng: -111.7941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scottsbluff, Nebraska 41.8684 -103.6616 matched with DB +City: Scottsbluff, state: Nebraska, Lat: 41.8684, Lng: -103.6616, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Alabama 33.8508 -87.2710 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Alabama 33.8508 -87.2710 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robbinsdale, Minnesota 45.0261 -93.3332 matched with DB +City: Robbinsdale, state: Minnesota, Lat: 45.0261, Lng: -93.3332, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Short Hills, New Jersey 40.7389 -74.3278 matched with DB +City: Short Hills, state: New Jersey, Lat: 40.7389, Lng: -74.3278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Freehold, New Jersey 40.2324 -74.2943 matched with DB +City: West Freehold, state: New Jersey, Lat: 40.2324, Lng: -74.2943, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Minnesota 45.2991 -93.7996 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson Creek, North Carolina 35.2657 -78.9580 matched with DB +City: Anderson Creek, state: North Carolina, Lat: 35.2657, Lng: -78.958, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nolensville, Tennessee 35.9572 -86.6719 matched with DB +City: Nolensville, state: Tennessee, Lat: 35.9572, Lng: -86.6719, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chatham, Illinois 39.6733 -89.6934 matched with DB +City: Chatham, state: New Jersey, Lat: 40.7274, Lng: -74.4289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chatham, Illinois 39.6733 -89.6934 matched with DB +City: Chatham, state: Illinois, Lat: 39.6733, Lng: -89.6934, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Black Forest, Colorado 39.0608 -104.6752 matched with DB +City: Black Forest, state: Colorado, Lat: 39.0608, Lng: -104.6752, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brainerd, Minnesota 46.3553 -94.1983 matched with DB +City: Brainerd, state: Minnesota, Lat: 46.3553, Lng: -94.1983, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopatcong, New Jersey 40.9541 -74.6593 matched with DB +City: Hopatcong, state: New Jersey, Lat: 40.9541, Lng: -74.6593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halawa, Hawaii 21.3753 -157.9185 matched with DB +City: Halawa, state: Hawaii, Lat: 21.3753, Lng: -157.9185, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minneola, Florida 28.6067 -81.7322 matched with DB +City: Minneola, state: Florida, Lat: 28.6067, Lng: -81.7322, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dumas, Texas 35.8613 -101.9642 matched with DB +City: Dumas, state: Texas, Lat: 35.8613, Lng: -101.9642, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Auburn, California 38.9306 -121.0820 matched with DB +City: North Auburn, state: California, Lat: 38.9306, Lng: -121.082, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindenhurst, Illinois 42.4175 -88.0257 matched with DB +City: Lindenhurst, state: New York, Lat: 40.6858, Lng: -73.371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lindenhurst, Illinois 42.4175 -88.0257 matched with DB +City: Lindenhurst, state: Illinois, Lat: 42.4175, Lng: -88.0257, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Minnesota 45.8776 -95.3767 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Minnesota 45.8776 -95.3767 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Minnesota 45.8776 -95.3767 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Minnesota 45.8776 -95.3767 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sierra Vista Southeast, Arizona 31.4525 -110.2160 matched with DB +City: Sierra Vista Southeast, state: Arizona, Lat: 31.4525, Lng: -110.216, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewater, New Jersey 40.8237 -73.9740 matched with DB +City: Edgewater, state: New Jersey, Lat: 40.8237, Lng: -73.974, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, New Jersey 40.8237 -73.9740 matched with DB +City: Edgewater, state: Florida, Lat: 28.9594, Lng: -80.9406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, New Jersey 40.8237 -73.9740 matched with DB +City: Edgewater, state: Maryland, Lat: 38.9373, Lng: -76.5572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington Court House, Ohio 39.5381 -83.4281 matched with DB +City: Washington Court House, state: Ohio, Lat: 39.5381, Lng: -83.4281, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Wylie, South Carolina 35.0997 -81.0678 matched with DB +City: Lake Wylie, state: South Carolina, Lat: 35.0997, Lng: -81.0678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Natchez, Mississippi 31.5437 -91.3867 matched with DB +City: Natchez, state: Mississippi, Lat: 31.5437, Lng: -91.3867, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moorestown-Lenola, New Jersey 39.9659 -74.9643 matched with DB +City: Moorestown-Lenola, state: New Jersey, Lat: 39.9659, Lng: -74.9643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethton, Tennessee 36.3367 -82.2370 matched with DB +City: Elizabethton, state: Tennessee, Lat: 36.3367, Lng: -82.237, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ozark, Alabama 31.4508 -85.6473 matched with DB +City: Ozark, state: Alabama, Lat: 31.4508, Lng: -85.6473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ozark, Alabama 31.4508 -85.6473 matched with DB +City: Ozark, state: Missouri, Lat: 37.0365, Lng: -93.2158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mercerville, New Jersey 40.2360 -74.6917 matched with DB +City: Mercerville, state: New Jersey, Lat: 40.236, Lng: -74.6917, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pineville, Louisiana 31.3414 -92.4096 matched with DB +City: Pineville, state: Louisiana, Lat: 31.3414, Lng: -92.4096, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pineville, Louisiana 31.3414 -92.4096 matched with DB +City: Pineville, state: North Carolina, Lat: 35.0864, Lng: -80.8915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, California 37.8548 -122.0136 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, California 37.8548 -122.0136 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley Gardens, New Jersey 40.5711 -74.6678 matched with DB +City: Bradley Gardens, state: New Jersey, Lat: 40.5711, Lng: -74.6678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, California 37.3875 -120.7248 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, California 37.3875 -120.7248 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Tennessee 35.2594 -89.6680 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Tennessee 35.2594 -89.6680 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Tennessee 35.2594 -89.6680 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Tennessee 35.2594 -89.6680 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Tennessee 35.2594 -89.6680 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilkinsburg, Pennsylvania 40.4442 -79.8733 matched with DB +City: Wilkinsburg, state: Pennsylvania, Lat: 40.4442, Lng: -79.8733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookside, Delaware 39.6665 -75.7152 matched with DB +City: Brookside, state: Delaware, Lat: 39.6665, Lng: -75.7152, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iona, Florida 26.5160 -81.9601 matched with DB +City: Iona, state: Florida, Lat: 26.516, Lng: -81.9601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loganville, Georgia 33.8353 -83.8958 matched with DB +City: Loganville, state: Georgia, Lat: 33.8353, Lng: -83.8958, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandermill, Virginia 37.4340 -77.6522 matched with DB +City: Brandermill, state: Virginia, Lat: 37.434, Lng: -77.6522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chicago Ridge, Illinois 41.7034 -87.7795 matched with DB +City: Chicago Ridge, state: Illinois, Lat: 41.7034, Lng: -87.7795, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jericho, New York 40.7875 -73.5416 matched with DB +City: Jericho, state: New York, Lat: 40.7875, Lng: -73.5416, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerton, Arizona 32.6007 -114.6994 matched with DB +City: Somerton, state: Arizona, Lat: 32.6007, Lng: -114.6994, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Lealman, Florida 27.8192 -82.7384 matched with DB +City: West Lealman, state: Florida, Lat: 27.8192, Lng: -82.7384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gantt, South Carolina 34.7837 -82.4027 matched with DB +City: Gantt, state: South Carolina, Lat: 34.7837, Lng: -82.4027, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Mississippi 33.5126 -90.1993 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Mississippi 33.5126 -90.1993 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Mississippi 33.5126 -90.1993 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Mississippi 33.5126 -90.1993 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Mankato, Minnesota 44.1810 -94.0391 matched with DB +City: North Mankato, state: Minnesota, Lat: 44.181, Lng: -94.0391, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bainbridge, Georgia 30.9052 -84.5732 matched with DB +City: Bainbridge, state: Georgia, Lat: 30.9052, Lng: -84.5732, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bainbridge, Georgia 30.9052 -84.5732 matched with DB +City: Bainbridge, state: Ohio, Lat: 41.3855, Lng: -81.3478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Alabama 33.8088 -85.7545 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Alabama 33.8088 -85.7545 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Alabama 33.8088 -85.7545 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Alabama 33.8088 -85.7545 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Alabama 33.8088 -85.7545 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Alabama 33.8088 -85.7545 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk Plain, Washington 47.0425 -122.3663 matched with DB +City: Elk Plain, state: Washington, Lat: 47.0425, Lng: -122.3663, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Lake, Indiana 41.3696 -87.4389 matched with DB +City: Cedar Lake, state: Indiana, Lat: 41.3696, Lng: -87.4389, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willowick, Ohio 41.6342 -81.4678 matched with DB +City: Willowick, state: Ohio, Lat: 41.6342, Lng: -81.4678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Luling, Louisiana 29.9008 -90.3523 matched with DB +City: Luling, state: Louisiana, Lat: 29.9008, Lng: -90.3523, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bensville, Maryland 38.6176 -77.0077 matched with DB +City: Bensville, state: Maryland, Lat: 38.6176, Lng: -77.0077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midlothian, Illinois 41.6254 -87.7243 matched with DB +City: Midlothian, state: Illinois, Lat: 41.6254, Lng: -87.7243, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Illinois 41.6254 -87.7243 matched with DB +City: Midlothian, state: Texas, Lat: 32.4669, Lng: -96.989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Illinois 41.6254 -87.7243 matched with DB +City: Midlothian, state: Virginia, Lat: 37.4856, Lng: -77.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Valley, California 37.9086 -122.5421 matched with DB +City: Mill Valley, state: California, Lat: 37.9086, Lng: -122.5421, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesterton, Indiana 41.5997 -87.0550 matched with DB +City: Chesterton, state: Indiana, Lat: 41.5997, Lng: -87.055, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Kentucky 39.0856 -84.4868 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Kentucky 39.0856 -84.4868 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Kentucky 39.0856 -84.4868 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Georgia 33.6049 -83.8463 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Georgia 33.6049 -83.8463 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Georgia 33.6049 -83.8463 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Georgia 33.6049 -83.8463 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Georgia 33.6049 -83.8463 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobe Sound, Florida 27.0729 -80.1425 matched with DB +City: Hobe Sound, state: Florida, Lat: 27.0729, Lng: -80.1425, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron, South Dakota 44.3623 -98.2094 matched with DB +City: Huron, state: South Dakota, Lat: 44.3623, Lng: -98.2094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coolidge, Arizona 32.9363 -111.5254 matched with DB +City: Coolidge, state: Arizona, Lat: 32.9363, Lng: -111.5254, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Federal Heights, Colorado 39.8651 -105.0154 matched with DB +City: Federal Heights, state: Colorado, Lat: 39.8651, Lng: -105.0154, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Park, Illinois 41.8683 -87.8157 matched with DB +City: Forest Park, state: Ohio, Lat: 39.2861, Lng: -84.5258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Illinois 41.8683 -87.8157 matched with DB +City: Forest Park, state: Illinois, Lat: 41.8683, Lng: -87.8157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Illinois 41.8683 -87.8157 matched with DB +City: Forest Park, state: Georgia, Lat: 33.6209, Lng: -84.359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Lakes, Arizona 33.2172 -111.8695 matched with DB +City: Sun Lakes, state: Arizona, Lat: 33.2172, Lng: -111.8695, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westmont, New Jersey 39.9082 -75.0551 matched with DB +City: Westmont, state: Illinois, Lat: 41.7948, Lng: -87.9742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, New Jersey 39.9082 -75.0551 matched with DB +City: Westmont, state: California, Lat: 33.9417, Lng: -118.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, New Jersey 39.9082 -75.0551 matched with DB +City: Westmont, state: New Jersey, Lat: 39.9082, Lng: -75.0551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shepherdsville, Kentucky 37.9813 -85.7007 matched with DB +City: Shepherdsville, state: Kentucky, Lat: 37.9813, Lng: -85.7007, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dallas, Georgia 33.9152 -84.8416 matched with DB +City: Dallas, state: Pennsylvania, Lat: 41.3608, Lng: -75.9656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Georgia 33.9152 -84.8416 matched with DB +City: Dallas, state: Georgia, Lat: 33.9152, Lng: -84.8416, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Georgia 33.9152 -84.8416 matched with DB +City: Dallas, state: Oregon, Lat: 44.9221, Lng: -123.313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Georgia 33.9152 -84.8416 matched with DB +City: Dallas, state: Texas, Lat: 32.7935, Lng: -96.7667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood Park, Florida 27.5390 -80.3865 matched with DB +City: Lakewood Park, state: Florida, Lat: 27.539, Lng: -80.3865, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: College Park, Georgia 33.6363 -84.4640 matched with DB +City: College Park, state: Maryland, Lat: 38.996, Lng: -76.9337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: College Park, Georgia 33.6363 -84.4640 matched with DB +City: College Park, state: Georgia, Lat: 33.6363, Lng: -84.464, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powell, Ohio 40.1689 -83.0829 matched with DB +City: Powell, state: Ohio, Lat: 40.1689, Lng: -83.0829, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Powell, Ohio 40.1689 -83.0829 matched with DB +City: Powell, state: Tennessee, Lat: 36.0358, Lng: -84.0296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fergus Falls, Minnesota 46.2854 -96.0758 matched with DB +City: Fergus Falls, state: Minnesota, Lat: 46.2854, Lng: -96.0758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pierre, South Dakota 44.3748 -100.3205 matched with DB +City: Pierre, state: South Dakota, Lat: 44.3748, Lng: -100.3205, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Texas 31.9642 -95.2617 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Texas 31.9642 -95.2617 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Texas 31.9642 -95.2617 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Texas 31.9642 -95.2617 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Texas 31.9642 -95.2617 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Texas 31.9642 -95.2617 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kemp Mill, Maryland 39.0412 -77.0215 matched with DB +City: Kemp Mill, state: Maryland, Lat: 39.0412, Lng: -77.0215, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneonta, New York 42.4551 -75.0666 matched with DB +City: Oneonta, state: New York, Lat: 42.4551, Lng: -75.0666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Tennessee 35.4573 -84.6045 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Tennessee 35.4573 -84.6045 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Tennessee 35.4573 -84.6045 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Tennessee 35.4573 -84.6045 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Tennessee 35.4573 -84.6045 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allouez, Wisconsin 44.4721 -88.0259 matched with DB +City: Allouez, state: Wisconsin, Lat: 44.4721, Lng: -88.0259, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indiana, Pennsylvania 40.6220 -79.1552 matched with DB +City: Indiana, state: Pennsylvania, Lat: 40.622, Lng: -79.1552, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunmore, Pennsylvania 41.4152 -75.6072 matched with DB +City: Dunmore, state: Pennsylvania, Lat: 41.4152, Lng: -75.6072, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hidalgo, Texas 26.1090 -98.2464 matched with DB +City: Hidalgo, state: Texas, Lat: 26.109, Lng: -98.2464, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ardmore, Pennsylvania 40.0033 -75.2947 matched with DB +City: Ardmore, state: Pennsylvania, Lat: 40.0033, Lng: -75.2947, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ardmore, Pennsylvania 40.0033 -75.2947 matched with DB +City: Ardmore, state: Oklahoma, Lat: 34.1949, Lng: -97.1256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson Valley-Yorktown, New York 41.3180 -73.8008 matched with DB +City: Jefferson Valley-Yorktown, state: New York, Lat: 41.318, Lng: -73.8008, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Wenatchee, Washington 47.4174 -120.2822 matched with DB +City: East Wenatchee, state: Washington, Lat: 47.4174, Lng: -120.2822, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Ulm, Minnesota 44.3120 -94.4685 matched with DB +City: New Ulm, state: Minnesota, Lat: 44.312, Lng: -94.4685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thonotosassa, Florida 28.0464 -82.2910 matched with DB +City: Thonotosassa, state: Florida, Lat: 28.0464, Lng: -82.291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wauconda, Illinois 42.2749 -88.1359 matched with DB +City: Wauconda, state: Illinois, Lat: 42.2749, Lng: -88.1359, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Wisconsin 42.9892 -89.5383 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Wisconsin 42.9892 -89.5383 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharonville, Ohio 39.2825 -84.4071 matched with DB +City: Sharonville, state: Ohio, Lat: 39.2825, Lng: -84.4071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Circleville, Ohio 39.6063 -82.9334 matched with DB +City: Circleville, state: Ohio, Lat: 39.6063, Lng: -82.9334, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Helens, Oregon 45.8572 -122.8164 matched with DB +City: St. Helens, state: Oregon, Lat: 45.8572, Lng: -122.8164, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawaiian Gardens, California 33.8304 -118.0728 matched with DB +City: Hawaiian Gardens, state: California, Lat: 33.8304, Lng: -118.0728, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beach Park, Illinois 42.4260 -87.8583 matched with DB +City: Beach Park, state: Illinois, Lat: 42.426, Lng: -87.8583, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lone Tree, Colorado 39.5309 -104.8709 matched with DB +City: Lone Tree, state: Colorado, Lat: 39.5309, Lng: -104.8709, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powell, Tennessee 36.0358 -84.0296 matched with DB +City: Powell, state: Ohio, Lat: 40.1689, Lng: -83.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Powell, Tennessee 36.0358 -84.0296 matched with DB +City: Powell, state: Tennessee, Lat: 36.0358, Lng: -84.0296, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Milton, Florida 30.6175 -86.9636 matched with DB +City: East Milton, state: Florida, Lat: 30.6175, Lng: -86.9636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McFarland, California 35.6781 -119.2413 matched with DB +City: McFarland, state: Wisconsin, Lat: 43.0203, Lng: -89.2828, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: McFarland, California 35.6781 -119.2413 matched with DB +City: McFarland, state: California, Lat: 35.6781, Lng: -119.2413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grass Valley, California 39.2238 -121.0522 matched with DB +City: Grass Valley, state: California, Lat: 39.2238, Lng: -121.0522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roselle Park, New Jersey 40.6653 -74.2666 matched with DB +City: Roselle Park, state: New Jersey, Lat: 40.6653, Lng: -74.2666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McPherson, Kansas 38.3714 -97.6605 matched with DB +City: McPherson, state: Kansas, Lat: 38.3714, Lng: -97.6605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyndhurst, Ohio 41.5172 -81.4922 matched with DB +City: Lyndhurst, state: Ohio, Lat: 41.5172, Lng: -81.4922, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lyndhurst, Ohio 41.5172 -81.4922 matched with DB +City: Lyndhurst, state: New Jersey, Lat: 40.7965, Lng: -74.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bothell East, Washington 47.8064 -122.1844 matched with DB +City: Bothell East, state: Washington, Lat: 47.8064, Lng: -122.1844, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenville, Illinois 41.8209 -88.1857 matched with DB +City: Warrenville, state: Illinois, Lat: 41.8209, Lng: -88.1857, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wells Branch, Texas 30.4433 -97.6790 matched with DB +City: Wells Branch, state: Texas, Lat: 30.4433, Lng: -97.679, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camp Pendleton South, California 33.2329 -117.3930 matched with DB +City: Camp Pendleton South, state: California, Lat: 33.2329, Lng: -117.393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waimalu, Hawaii 21.3913 -157.9345 matched with DB +City: Waimalu, state: Hawaii, Lat: 21.3913, Lng: -157.9345, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Cleveland, Ohio 41.5317 -81.5794 matched with DB +City: East Cleveland, state: Ohio, Lat: 41.5317, Lng: -81.5794, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Destin, Florida 30.3950 -86.4701 matched with DB +City: Destin, state: Florida, Lat: 30.395, Lng: -86.4701, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Royal Kunia, Hawaii 21.4053 -158.0318 matched with DB +City: Royal Kunia, state: Hawaii, Lat: 21.4053, Lng: -158.0318, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Virginia 38.7916 -77.0740 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Virginia 38.7916 -77.0740 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Virginia 38.7916 -77.0740 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Virginia 38.7916 -77.0740 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wood Dale, Illinois 41.9668 -87.9808 matched with DB +City: Wood Dale, state: Illinois, Lat: 41.9668, Lng: -87.9808, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Illinois 38.5534 -89.9161 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Illinois 38.5534 -89.9161 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Illinois 38.5534 -89.9161 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olean, New York 42.0819 -78.4321 matched with DB +City: Olean, state: New York, Lat: 42.0819, Lng: -78.4321, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hockessin, Delaware 39.7837 -75.6815 matched with DB +City: Hockessin, state: Delaware, Lat: 39.7837, Lng: -75.6815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunset, Florida 25.7060 -80.3530 matched with DB +City: Sunset, state: Florida, Lat: 25.706, Lng: -80.353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beacon, New York 41.5036 -73.9655 matched with DB +City: Beacon, state: New York, Lat: 41.5036, Lng: -73.9655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Franklin, Ohio 40.9525 -81.5838 matched with DB +City: New Franklin, state: Ohio, Lat: 40.9525, Lng: -81.5838, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kettering, Maryland 38.8888 -76.7889 matched with DB +City: Kettering, state: Ohio, Lat: 39.6956, Lng: -84.1494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kettering, Maryland 38.8888 -76.7889 matched with DB +City: Kettering, state: Maryland, Lat: 38.8888, Lng: -76.7889, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Artondale, Washington 47.3021 -122.6406 matched with DB +City: Artondale, state: Washington, Lat: 47.3021, Lng: -122.6406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waycross, Georgia 31.2108 -82.3579 matched with DB +City: Waycross, state: Georgia, Lat: 31.2108, Lng: -82.3579, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellair-Meadowbrook Terrace, Florida 30.1796 -81.7375 matched with DB +City: Bellair-Meadowbrook Terrace, state: Florida, Lat: 30.1796, Lng: -81.7375, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beachwood, Ohio 41.4759 -81.5030 matched with DB +City: Beachwood, state: New Jersey, Lat: 39.9286, Lng: -74.2022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beachwood, Ohio 41.4759 -81.5030 matched with DB +City: Beachwood, state: Ohio, Lat: 41.4759, Lng: -81.503, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Minnesota 43.6281 -95.5990 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Minnesota 43.6281 -95.5990 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Sioux City, Nebraska 42.4627 -96.4125 matched with DB +City: South Sioux City, state: Nebraska, Lat: 42.4627, Lng: -96.4125, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sauk Rapids, Minnesota 45.5981 -94.1538 matched with DB +City: Sauk Rapids, state: Minnesota, Lat: 45.5981, Lng: -94.1538, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olympia Heights, Florida 25.7240 -80.3388 matched with DB +City: Olympia Heights, state: Florida, Lat: 25.724, Lng: -80.3388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maumee, Ohio 41.5696 -83.6636 matched with DB +City: Maumee, state: Ohio, Lat: 41.5696, Lng: -83.6636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Teays Valley, West Virginia 38.4482 -81.9246 matched with DB +City: Teays Valley, state: West Virginia, Lat: 38.4482, Lng: -81.9246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland, Tennessee 35.2585 -89.7308 matched with DB +City: Lakeland, state: Tennessee, Lat: 35.2585, Lng: -89.7308, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeland, Tennessee 35.2585 -89.7308 matched with DB +City: Lakeland, state: Florida, Lat: 28.0557, Lng: -81.9545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hill, Texas 32.6619 -97.2662 matched with DB +City: Forest Hill, state: Texas, Lat: 32.6619, Lng: -97.2662, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Channahon, Illinois 41.4210 -88.2599 matched with DB +City: Channahon, state: Illinois, Lat: 41.421, Lng: -88.2599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Braselton, Georgia 34.1087 -83.8127 matched with DB +City: Braselton, state: Georgia, Lat: 34.1087, Lng: -83.8127, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Indiana 38.8602 -86.4895 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Indiana 38.8602 -86.4895 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Indiana 38.8602 -86.4895 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Indiana 38.8602 -86.4895 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Indiana 38.8602 -86.4895 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Indiana 38.8602 -86.4895 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Villas, Florida 26.5504 -81.8678 matched with DB +City: Villas, state: New Jersey, Lat: 39.0157, Lng: -74.935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Villas, Florida 26.5504 -81.8678 matched with DB +City: Villas, state: Florida, Lat: 26.5504, Lng: -81.8678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellefontaine, Ohio 40.3627 -83.7630 matched with DB +City: Bellefontaine, state: Ohio, Lat: 40.3627, Lng: -83.763, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yulee, Florida 30.6350 -81.5678 matched with DB +City: Yulee, state: Florida, Lat: 30.635, Lng: -81.5678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, California 38.8950 -121.0777 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snoqualmie, Washington 47.5293 -121.8412 matched with DB +City: Snoqualmie, state: Washington, Lat: 47.5293, Lng: -121.8412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willow Grove, Pennsylvania 40.1469 -75.1174 matched with DB +City: Willow Grove, state: Pennsylvania, Lat: 40.1469, Lng: -75.1174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McMinnville, Tennessee 35.6864 -85.7812 matched with DB +City: McMinnville, state: Tennessee, Lat: 35.6864, Lng: -85.7812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: McMinnville, Tennessee 35.6864 -85.7812 matched with DB +City: McMinnville, state: Oregon, Lat: 45.211, Lng: -123.1918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cayce, South Carolina 33.9459 -81.0429 matched with DB +City: Cayce, state: South Carolina, Lat: 33.9459, Lng: -81.0429, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waianae, Hawaii 21.4568 -158.1758 matched with DB +City: Waianae, state: Hawaii, Lat: 21.4568, Lng: -158.1758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ephrata, Pennsylvania 40.1811 -76.1812 matched with DB +City: Ephrata, state: Pennsylvania, Lat: 40.1811, Lng: -76.1812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazel Crest, Illinois 41.5732 -87.6899 matched with DB +City: Hazel Crest, state: Illinois, Lat: 41.5732, Lng: -87.6899, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, New York 40.8761 -73.1521 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami Springs, Florida 25.8195 -80.2894 matched with DB +City: Miami Springs, state: Florida, Lat: 25.8195, Lng: -80.2894, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Fair Oaks, California 37.4754 -122.2034 matched with DB +City: North Fair Oaks, state: California, Lat: 37.4754, Lng: -122.2034, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Point, New York 40.9357 -72.9364 matched with DB +City: Rocky Point, state: New York, Lat: 40.9357, Lng: -72.9364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamont, California 35.2659 -118.9159 matched with DB +City: Lamont, state: California, Lat: 35.2659, Lng: -118.9159, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moberly, Missouri 39.4179 -92.4364 matched with DB +City: Moberly, state: Missouri, Lat: 39.4179, Lng: -92.4364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shorewood, Wisconsin 43.0913 -87.8864 matched with DB +City: Shorewood, state: Wisconsin, Lat: 43.0913, Lng: -87.8864, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shorewood, Wisconsin 43.0913 -87.8864 matched with DB +City: Shorewood, state: Illinois, Lat: 41.5169, Lng: -88.2146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coldwater, Michigan 41.9465 -84.9989 matched with DB +City: Coldwater, state: Michigan, Lat: 41.9465, Lng: -84.9989, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colesville, Maryland 39.0730 -77.0010 matched with DB +City: Colesville, state: Maryland, Lat: 39.073, Lng: -77.001, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valencia West, Arizona 32.1355 -111.1123 matched with DB +City: Valencia West, state: Arizona, Lat: 32.1355, Lng: -111.1123, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Missouri 39.1147 -93.2010 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Missouri 39.1147 -93.2010 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Missouri 39.1147 -93.2010 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Missouri 39.1147 -93.2010 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenpool, Oklahoma 35.9488 -96.0052 matched with DB +City: Glenpool, state: Oklahoma, Lat: 35.9488, Lng: -96.0052, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Latham, New York 42.7427 -73.7497 matched with DB +City: Latham, state: New York, Lat: 42.7427, Lng: -73.7497, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrensville Heights, Ohio 41.4363 -81.5222 matched with DB +City: Warrensville Heights, state: Ohio, Lat: 41.4363, Lng: -81.5222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, Utah 41.8349 -111.8265 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Utah 41.8349 -111.8265 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Utah 41.8349 -111.8265 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Utah 41.8349 -111.8265 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Carbon, Illinois 38.7580 -89.9822 matched with DB +City: Glen Carbon, state: Illinois, Lat: 38.758, Lng: -89.9822, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Heights, Ohio 41.4948 -81.5350 matched with DB +City: University Heights, state: Ohio, Lat: 41.4948, Lng: -81.535, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Minnesota 44.4488 -95.7897 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Minnesota 44.4488 -95.7897 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Minnesota 44.4488 -95.7897 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Minnesota 44.4488 -95.7897 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Speedway, Indiana 39.7937 -86.2481 matched with DB +City: Speedway, state: Indiana, Lat: 39.7937, Lng: -86.2481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beeville, Texas 28.4053 -97.7490 matched with DB +City: Beeville, state: Texas, Lat: 28.4053, Lng: -97.749, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Arkansas 35.2035 -90.2059 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Arkansas 35.2035 -90.2059 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Arkansas 35.2035 -90.2059 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Arkansas 35.2035 -90.2059 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Arkansas 35.2035 -90.2059 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Neches, Texas 29.9765 -93.9459 matched with DB +City: Port Neches, state: Texas, Lat: 29.9765, Lng: -93.9459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: California, Maryland 38.2969 -76.4949 matched with DB +City: California, state: Maryland, Lat: 38.2969, Lng: -76.4949, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Park, California 34.1850 -118.7669 matched with DB +City: Oak Park, state: Michigan, Lat: 42.4649, Lng: -83.1824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, California 34.1850 -118.7669 matched with DB +City: Oak Park, state: Illinois, Lat: 41.8872, Lng: -87.7899, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, California 34.1850 -118.7669 matched with DB +City: Oak Park, state: California, Lat: 34.185, Lng: -118.7669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brecksville, Ohio 41.3079 -81.6192 matched with DB +City: Brecksville, state: Ohio, Lat: 41.3079, Lng: -81.6192, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lumberton, Texas 30.2562 -94.2070 matched with DB +City: Lumberton, state: North Carolina, Lat: 34.6312, Lng: -79.0186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, Texas 30.2562 -94.2070 matched with DB +City: Lumberton, state: Texas, Lat: 30.2562, Lng: -94.207, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, Texas 30.2562 -94.2070 matched with DB +City: Lumberton, state: New Jersey, Lat: 39.9569, Lng: -74.8036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyandanch, New York 40.7496 -73.3633 matched with DB +City: Wyandanch, state: New York, Lat: 40.7496, Lng: -73.3633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Providence, New Jersey 40.6996 -74.4035 matched with DB +City: New Providence, state: New Jersey, Lat: 40.6996, Lng: -74.4035, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaufort, South Carolina 32.4597 -80.7235 matched with DB +City: Beaufort, state: South Carolina, Lat: 32.4597, Lng: -80.7235, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Carrollton, Maryland 38.9656 -76.8775 matched with DB +City: New Carrollton, state: Maryland, Lat: 38.9656, Lng: -76.8775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gonzalez, Florida 30.5822 -87.2906 matched with DB +City: Gonzalez, state: Florida, Lat: 30.5822, Lng: -87.2906, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Islip, New York 40.7257 -73.1869 matched with DB +City: East Islip, state: New York, Lat: 40.7257, Lng: -73.1869, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bardstown, Kentucky 37.8175 -85.4550 matched with DB +City: Bardstown, state: Kentucky, Lat: 37.8175, Lng: -85.455, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newington, Virginia 38.7358 -77.1993 matched with DB +City: Newington, state: Virginia, Lat: 38.7358, Lng: -77.1993, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seabrook, Texas 29.5751 -95.0235 matched with DB +City: Seabrook, state: Texas, Lat: 29.5751, Lng: -95.0235, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seabrook, Texas 29.5751 -95.0235 matched with DB +City: Seabrook, state: Maryland, Lat: 38.9802, Lng: -76.8502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Western Springs, Illinois 41.8023 -87.9006 matched with DB +City: Western Springs, state: Illinois, Lat: 41.8023, Lng: -87.9006, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Echelon, New Jersey 39.8482 -74.9957 matched with DB +City: Echelon, state: New Jersey, Lat: 39.8482, Lng: -74.9957, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nesconset, New York 40.8467 -73.1522 matched with DB +City: Nesconset, state: New York, Lat: 40.8467, Lng: -73.1522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plover, Wisconsin 44.4615 -89.5382 matched with DB +City: Plover, state: Wisconsin, Lat: 44.4615, Lng: -89.5382, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Endicott, New York 42.0980 -76.0639 matched with DB +City: Endicott, state: New York, Lat: 42.098, Lng: -76.0639, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsville, Virginia 36.6826 -79.8636 matched with DB +City: Martinsville, state: Virginia, Lat: 36.6826, Lng: -79.8636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Virginia 36.6826 -79.8636 matched with DB +City: Martinsville, state: Indiana, Lat: 39.4149, Lng: -86.4316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Virginia 36.6826 -79.8636 matched with DB +City: Martinsville, state: New Jersey, Lat: 40.603, Lng: -74.5751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington Park, Maryland 38.2528 -76.4424 matched with DB +City: Lexington Park, state: Maryland, Lat: 38.2528, Lng: -76.4424, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bexley, Ohio 39.9650 -82.9343 matched with DB +City: Bexley, state: Ohio, Lat: 39.965, Lng: -82.9343, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Charleston, West Virginia 38.3426 -81.7155 matched with DB +City: South Charleston, state: West Virginia, Lat: 38.3426, Lng: -81.7155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgetown, Ohio 39.1552 -84.6359 matched with DB +City: Bridgetown, state: Ohio, Lat: 39.1552, Lng: -84.6359, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eatontown, New Jersey 40.2913 -74.0558 matched with DB +City: Eatontown, state: New Jersey, Lat: 40.2913, Lng: -74.0558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Florida 28.4968 -81.3316 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Florida 28.4968 -81.3316 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Florida 28.4968 -81.3316 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Florida 28.4968 -81.3316 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, North Carolina 36.1030 -80.4166 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, North Carolina 36.1030 -80.4166 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Georgia 34.1373 -83.6021 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Georgia 34.1373 -83.6021 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Georgia 34.1373 -83.6021 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bonita, California 32.6651 -117.0296 matched with DB +City: Bonita, state: California, Lat: 32.6651, Lng: -117.0296, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: King City, California 36.2164 -121.1330 matched with DB +City: King City, state: California, Lat: 36.2164, Lng: -121.133, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avocado Heights, California 34.0391 -117.9970 matched with DB +City: Avocado Heights, state: California, Lat: 34.0391, Lng: -117.997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Colorado 40.6205 -103.1925 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Colorado 40.6205 -103.1925 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Colorado 40.6205 -103.1925 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Forest Park, Washington 47.7574 -122.2864 matched with DB +City: Lake Forest Park, state: Washington, Lat: 47.7574, Lng: -122.2864, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fruita, Colorado 39.1548 -108.7305 matched with DB +City: Fruita, state: Colorado, Lat: 39.1548, Lng: -108.7305, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Alamos, New Mexico 35.8927 -106.2862 matched with DB +City: Los Alamos, state: New Mexico, Lat: 35.8927, Lng: -106.2862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moncks Corner, South Carolina 33.1730 -80.0107 matched with DB +City: Moncks Corner, state: South Carolina, Lat: 33.173, Lng: -80.0107, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irondale, Alabama 33.5439 -86.6606 matched with DB +City: Irondale, state: Alabama, Lat: 33.5439, Lng: -86.6606, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Callaway, Florida 30.1349 -85.5568 matched with DB +City: Callaway, state: Florida, Lat: 30.1349, Lng: -85.5568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Lewis, Washington 47.0955 -122.5674 matched with DB +City: Fort Lewis, state: Washington, Lat: 47.0955, Lng: -122.5674, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, Ohio 39.8643 -84.3070 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Ohio 39.8643 -84.3070 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Ohio 39.8643 -84.3070 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Ohio 39.8643 -84.3070 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Park, New Jersey 40.4439 -74.5431 matched with DB +City: Franklin Park, state: Pennsylvania, Lat: 40.5903, Lng: -80.0999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, New Jersey 40.4439 -74.5431 matched with DB +City: Franklin Park, state: Illinois, Lat: 41.9361, Lng: -87.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, New Jersey 40.4439 -74.5431 matched with DB +City: Franklin Park, state: New Jersey, Lat: 40.4439, Lng: -74.5431, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avenal, California 36.0311 -120.1162 matched with DB +City: Avenal, state: California, Lat: 36.0311, Lng: -120.1162, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sault Ste. Marie, Michigan 46.4817 -84.3723 matched with DB +City: Sault Ste. Marie, state: Michigan, Lat: 46.4817, Lng: -84.3723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Azle, Texas 32.8955 -97.5379 matched with DB +City: Azle, state: Texas, Lat: 32.8955, Lng: -97.5379, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kilgore, Texas 32.3980 -94.8602 matched with DB +City: Kilgore, state: Texas, Lat: 32.398, Lng: -94.8602, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Connersville, Indiana 39.6582 -85.1410 matched with DB +City: Connersville, state: Indiana, Lat: 39.6582, Lng: -85.141, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Joppatowne, Maryland 39.4181 -76.3516 matched with DB +City: Joppatowne, state: Maryland, Lat: 39.4181, Lng: -76.3516, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Pennsylvania 40.8616 -79.8962 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Pennsylvania 40.8616 -79.8962 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pottsville, Pennsylvania 40.6798 -76.2091 matched with DB +City: Pottsville, state: Pennsylvania, Lat: 40.6798, Lng: -76.2091, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmetto, Florida 27.5251 -82.5749 matched with DB +City: Palmetto, state: Florida, Lat: 27.5251, Lng: -82.5749, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlantic Beach, Florida 30.3375 -81.4127 matched with DB +City: Atlantic Beach, state: Florida, Lat: 30.3375, Lng: -81.4127, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Illinois 40.5632 -90.0409 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Illinois 40.5632 -90.0409 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Illinois 40.5632 -90.0409 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Illinois 40.5632 -90.0409 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Illinois 40.5632 -90.0409 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Illinois 40.5632 -90.0409 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Maryland 39.3274 -77.3423 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Maryland 39.3274 -77.3423 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Maryland 39.3274 -77.3423 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Illinois 40.1508 -89.3720 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Illinois 40.1508 -89.3720 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Illinois 40.1508 -89.3720 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Illinois 40.1508 -89.3720 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Ohio 39.4241 -81.4465 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Ohio 39.4241 -81.4465 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Ridge, Louisiana 29.9593 -90.2202 matched with DB +City: River Ridge, state: Louisiana, Lat: 29.9593, Lng: -90.2202, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Pennsylvania 40.1741 -80.2465 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jupiter Farms, Florida 26.9222 -80.2189 matched with DB +City: Jupiter Farms, state: Florida, Lat: 26.9222, Lng: -80.2189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Station, Indiana 41.5729 -87.2599 matched with DB +City: Lake Station, state: Indiana, Lat: 41.5729, Lng: -87.2599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carnot-Moon, Pennsylvania 40.5187 -80.2178 matched with DB +City: Carnot-Moon, state: Pennsylvania, Lat: 40.5187, Lng: -80.2178, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andrews, Texas 32.3207 -102.5520 matched with DB +City: Andrews, state: Texas, Lat: 32.3207, Lng: -102.552, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Texas 32.1576 -94.7960 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Texas 32.1576 -94.7960 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Texas 32.1576 -94.7960 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Texas 32.1576 -94.7960 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Park, Georgia 33.8458 -84.1314 matched with DB +City: Mountain Park, state: Georgia, Lat: 33.8458, Lng: -84.1314, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange Park, Illinois 41.8308 -87.8723 matched with DB +City: La Grange Park, state: Illinois, Lat: 41.8308, Lng: -87.8723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blue Ash, Ohio 39.2480 -84.3827 matched with DB +City: Blue Ash, state: Ohio, Lat: 39.248, Lng: -84.3827, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broussard, Louisiana 30.1396 -91.9540 matched with DB +City: Broussard, state: Louisiana, Lat: 30.1396, Lng: -91.954, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Pennsylvania 41.2652 -75.8876 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Pennsylvania 41.2652 -75.8876 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Pennsylvania 41.2652 -75.8876 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Indiana 41.3666 -85.0559 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coatesville, Pennsylvania 39.9849 -75.8200 matched with DB +City: Coatesville, state: Pennsylvania, Lat: 39.9849, Lng: -75.82, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White House, Tennessee 36.4648 -86.6666 matched with DB +City: White House, state: Tennessee, Lat: 36.4648, Lng: -86.6666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodinville, Washington 47.7570 -122.1477 matched with DB +City: Woodinville, state: Washington, Lat: 47.757, Lng: -122.1477, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Virginia 38.7140 -77.1043 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Virginia 38.7140 -77.1043 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Virginia 38.7140 -77.1043 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Virginia 38.7140 -77.1043 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Virginia 38.7140 -77.1043 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elfers, Florida 28.2140 -82.7230 matched with DB +City: Elfers, state: Florida, Lat: 28.214, Lng: -82.723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Ohio 39.8689 -84.3292 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Ohio 39.8689 -84.3292 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Ohio 39.8689 -84.3292 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Ohio 39.8689 -84.3292 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Ohio 39.8689 -84.3292 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rogers, Minnesota 45.1865 -93.5783 matched with DB +City: Rogers, state: Minnesota, Lat: 45.1865, Lng: -93.5783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rogers, Minnesota 45.1865 -93.5783 matched with DB +City: Rogers, state: Arkansas, Lat: 36.317, Lng: -94.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blytheville, Arkansas 35.9321 -89.9051 matched with DB +City: Blytheville, state: Arkansas, Lat: 35.9321, Lng: -89.9051, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincolnwood, Illinois 42.0054 -87.7330 matched with DB +City: Lincolnwood, state: Illinois, Lat: 42.0054, Lng: -87.733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naranja, Florida 25.5164 -80.4222 matched with DB +City: Naranja, state: Florida, Lat: 25.5164, Lng: -80.4222, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange City, Florida 28.9348 -81.2881 matched with DB +City: Orange City, state: Florida, Lat: 28.9348, Lng: -81.2881, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kings Park West, Virginia 38.8151 -77.2960 matched with DB +City: Kings Park West, state: Virginia, Lat: 38.8151, Lng: -77.296, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Steamboat Springs, Colorado 40.4777 -106.8243 matched with DB +City: Steamboat Springs, state: Colorado, Lat: 40.4777, Lng: -106.8243, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trophy Club, Texas 33.0040 -97.1899 matched with DB +City: Trophy Club, state: Texas, Lat: 33.004, Lng: -97.1899, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Kingman-Butler, Arizona 35.2645 -114.0091 matched with DB +City: New Kingman-Butler, state: Arizona, Lat: 35.2645, Lng: -114.0091, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loveland, Ohio 39.2677 -84.2733 matched with DB +City: Loveland, state: Ohio, Lat: 39.2677, Lng: -84.2733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Loveland, Ohio 39.2677 -84.2733 matched with DB +City: Loveland, state: Colorado, Lat: 40.4166, Lng: -105.0623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cornelius, Oregon 45.5188 -123.0510 matched with DB +City: Cornelius, state: North Carolina, Lat: 35.4724, Lng: -80.8813, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cornelius, Oregon 45.5188 -123.0510 matched with DB +City: Cornelius, state: Oregon, Lat: 45.5188, Lng: -123.051, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moody, Alabama 33.5986 -86.4963 matched with DB +City: Moody, state: Alabama, Lat: 33.5986, Lng: -86.4963, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Wisconsin 43.1287 -87.9277 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Wisconsin 43.1287 -87.9277 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Wisconsin 43.1287 -87.9277 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orangeburg, South Carolina 33.4928 -80.8671 matched with DB +City: Orangeburg, state: South Carolina, Lat: 33.4928, Lng: -80.8671, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palos Verdes Estates, California 33.7872 -118.3973 matched with DB +City: Palos Verdes Estates, state: California, Lat: 33.7872, Lng: -118.3973, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Las Vegas, New Mexico 35.6011 -105.2206 matched with DB +City: Las Vegas, state: Nevada, Lat: 36.2333, Lng: -115.2654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Las Vegas, New Mexico 35.6011 -105.2206 matched with DB +City: Las Vegas, state: New Mexico, Lat: 35.6011, Lng: -105.2206, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheval, Florida 28.1459 -82.5184 matched with DB +City: Cheval, state: Florida, Lat: 28.1459, Lng: -82.5184, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carpinteria, California 34.3962 -119.5118 matched with DB +City: Carpinteria, state: California, Lat: 34.3962, Lng: -119.5118, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Tennessee 36.5921 -86.5239 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Tennessee 36.5921 -86.5239 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Tennessee 36.5921 -86.5239 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Tennessee 36.5921 -86.5239 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weddington, North Carolina 35.0228 -80.7383 matched with DB +City: Weddington, state: North Carolina, Lat: 35.0228, Lng: -80.7383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, North Carolina 35.6630 -81.2335 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, North Carolina 35.6630 -81.2335 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, North Carolina 35.6630 -81.2335 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, North Carolina 35.6630 -81.2335 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgefield Park, New Jersey 40.8543 -74.0201 matched with DB +City: Ridgefield Park, state: New Jersey, Lat: 40.8543, Lng: -74.0201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Arkansas 36.2438 -93.1198 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Arkansas 36.2438 -93.1198 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Arkansas 36.2438 -93.1198 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Arkansas 36.2438 -93.1198 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Arkansas 36.2438 -93.1198 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Arkansas 36.2438 -93.1198 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pell City, Alabama 33.5610 -86.2669 matched with DB +City: Pell City, state: Alabama, Lat: 33.561, Lng: -86.2669, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Colorado 39.9340 -105.1588 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Colorado 39.9340 -105.1588 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Pennsylvania 41.2340 -80.4998 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Pennsylvania 41.2340 -80.4998 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Ohio 39.4792 -84.4620 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Ohio 39.4792 -84.4620 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Ohio 39.4792 -84.4620 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Daytona, Florida 29.1657 -81.0055 matched with DB +City: South Daytona, state: Florida, Lat: 29.1657, Lng: -81.0055, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chino Valley, Arizona 34.7594 -112.4120 matched with DB +City: Chino Valley, state: Arizona, Lat: 34.7594, Lng: -112.412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Ohio 40.5304 -81.4806 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Ohio 40.5304 -81.4806 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Ohio 40.5304 -81.4806 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Ohio 40.5304 -81.4806 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Ohio 40.5304 -81.4806 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Terrace, California 34.0312 -117.3132 matched with DB +City: Grand Terrace, state: California, Lat: 34.0312, Lng: -117.3132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mounds View, Minnesota 45.1071 -93.2076 matched with DB +City: Mounds View, state: Minnesota, Lat: 45.1071, Lng: -93.2076, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Los Angeles, California 34.6097 -117.8339 matched with DB +City: Lake Los Angeles, state: California, Lat: 34.6097, Lng: -117.8339, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grande, Oregon 45.3242 -118.0865 matched with DB +City: La Grande, state: Oregon, Lat: 45.3242, Lng: -118.0865, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Palm Beach, Florida 26.8217 -80.0576 matched with DB +City: North Palm Beach, state: Florida, Lat: 26.8217, Lng: -80.0576, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Soddy-Daisy, Tennessee 35.2571 -85.1739 matched with DB +City: Soddy-Daisy, state: Tennessee, Lat: 35.2571, Lng: -85.1739, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stoughton, Wisconsin 42.9237 -89.2225 matched with DB +City: Stoughton, state: Wisconsin, Lat: 42.9237, Lng: -89.2225, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stoughton, Wisconsin 42.9237 -89.2225 matched with DB +City: Stoughton, state: Massachusetts, Lat: 42.1192, Lng: -71.1019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Ohio 39.2584 -84.7868 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Ohio 39.2584 -84.7868 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Ohio 39.2584 -84.7868 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Ohio 39.2584 -84.7868 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Ohio 39.2584 -84.7868 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Ohio 39.2584 -84.7868 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ionia, Michigan 42.9773 -85.0727 matched with DB +City: Ionia, state: Michigan, Lat: 42.9773, Lng: -85.0727, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oatfield, Oregon 45.4125 -122.5940 matched with DB +City: Oatfield, state: Oregon, Lat: 45.4125, Lng: -122.594, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cherry Hill Mall, New Jersey 39.9384 -75.0117 matched with DB +City: Cherry Hill Mall, state: New Jersey, Lat: 39.9384, Lng: -75.0117, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Carrollton, Ohio 39.6701 -84.2542 matched with DB +City: West Carrollton, state: Ohio, Lat: 39.6701, Lng: -84.2542, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Maryland 38.5515 -76.0787 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Maryland 38.5515 -76.0787 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Maryland 38.5515 -76.0787 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Maryland 38.5515 -76.0787 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwalk, Iowa 41.4895 -93.6913 matched with DB +City: Norwalk, state: Ohio, Lat: 41.2443, Lng: -82.6088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Iowa 41.4895 -93.6913 matched with DB +City: Norwalk, state: Connecticut, Lat: 41.1144, Lng: -73.4215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Iowa 41.4895 -93.6913 matched with DB +City: Norwalk, state: Iowa, Lat: 41.4895, Lng: -93.6913, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Iowa 41.4895 -93.6913 matched with DB +City: Norwalk, state: California, Lat: 33.9069, Lng: -118.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: On Top of the World Designated Place, Florida 29.1058 -82.2866 matched with DB +City: On Top of the World Designated Place, state: Florida, Lat: 29.1058, Lng: -82.2866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Ohio 41.3919 -81.5360 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Ohio 41.3919 -81.5360 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Ohio 41.3919 -81.5360 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Ohio 41.3919 -81.5360 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Ohio 41.3919 -81.5360 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Ohio 41.3919 -81.5360 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawaiian Paradise Park, Hawaii 19.5828 -154.9695 matched with DB +City: Hawaiian Paradise Park, state: Hawaii, Lat: 19.5828, Lng: -154.9695, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fernandina Beach, Florida 30.6571 -81.4511 matched with DB +City: Fernandina Beach, state: Florida, Lat: 30.6571, Lng: -81.4511, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, New Hampshire 43.3790 -72.3368 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, New Hampshire 43.3790 -72.3368 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forrest City, Arkansas 35.0135 -90.7931 matched with DB +City: Forrest City, state: Arkansas, Lat: 35.0135, Lng: -90.7931, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomeryville, Pennsylvania 40.2502 -75.2405 matched with DB +City: Montgomeryville, state: Pennsylvania, Lat: 40.2502, Lng: -75.2405, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webb City, Missouri 37.1412 -94.4676 matched with DB +City: Webb City, state: Missouri, Lat: 37.1412, Lng: -94.4676, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timberlake, Virginia 37.3167 -79.2481 matched with DB +City: Timberlake, state: Virginia, Lat: 37.3167, Lng: -79.2481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Missouri 38.7231 -90.2644 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Missouri 38.7231 -90.2644 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami, Oklahoma 36.8878 -94.8711 matched with DB +City: Miami, state: Florida, Lat: 25.784, Lng: -80.2101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Miami, Oklahoma 36.8878 -94.8711 matched with DB +City: Miami, state: Oklahoma, Lat: 36.8878, Lng: -94.8711, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waconia, Minnesota 44.8422 -93.7896 matched with DB +City: Waconia, state: Minnesota, Lat: 44.8422, Lng: -93.7896, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridge, New York 40.9068 -72.8816 matched with DB +City: Ridge, state: New York, Lat: 40.9068, Lng: -72.8816, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Monroe, Louisiana 32.5120 -92.1513 matched with DB +City: West Monroe, state: Louisiana, Lat: 32.512, Lng: -92.1513, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Valley, Maryland 39.3414 -77.2400 matched with DB +City: Green Valley, state: Arizona, Lat: 31.8393, Lng: -111.0009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Green Valley, Maryland 39.3414 -77.2400 matched with DB +City: Green Valley, state: Maryland, Lat: 39.3414, Lng: -77.24, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Michigan 42.6866 -83.1198 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Michigan 42.6866 -83.1198 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Michigan 42.6866 -83.1198 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Michigan 42.6866 -83.1198 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Larkspur, California 37.9393 -122.5312 matched with DB +City: Larkspur, state: California, Lat: 37.9393, Lng: -122.5312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Missouri 38.9708 -90.9714 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Missouri 38.9708 -90.9714 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Missouri 38.9708 -90.9714 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Missouri 38.9708 -90.9714 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Missouri 38.9708 -90.9714 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Missouri 38.9708 -90.9714 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vinings, Georgia 33.8608 -84.4686 matched with DB +City: Vinings, state: Georgia, Lat: 33.8608, Lng: -84.4686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Solana Beach, California 32.9943 -117.2574 matched with DB +City: Solana Beach, state: California, Lat: 32.9943, Lng: -117.2574, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grantsville, Utah 40.6148 -112.4777 matched with DB +City: Grantsville, state: Utah, Lat: 40.6148, Lng: -112.4777, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Adams, Massachusetts 42.6844 -73.1166 matched with DB +City: North Adams, state: Massachusetts, Lat: 42.6844, Lng: -73.1166, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, Washington 47.5304 -122.1633 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, Washington 47.5304 -122.1633 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadville, Pennsylvania 41.6476 -80.1468 matched with DB +City: Meadville, state: Pennsylvania, Lat: 41.6476, Lng: -80.1468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Byram, Mississippi 32.1890 -90.2861 matched with DB +City: Byram, state: Mississippi, Lat: 32.189, Lng: -90.2861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: D'Iberville, Mississippi 30.4709 -88.9011 matched with DB +City: D'Iberville, state: Mississippi, Lat: 30.4709, Lng: -88.9011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holly Hill, Florida 29.2442 -81.0465 matched with DB +City: Holly Hill, state: Florida, Lat: 29.2442, Lng: -81.0465, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Ann, Missouri 38.7266 -90.3872 matched with DB +City: St. Ann, state: Missouri, Lat: 38.7266, Lng: -90.3872, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lahaina, Hawaii 20.8848 -156.6618 matched with DB +City: Lahaina, state: Hawaii, Lat: 20.8848, Lng: -156.6618, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fostoria, Ohio 41.1600 -83.4121 matched with DB +City: Fostoria, state: Ohio, Lat: 41.16, Lng: -83.4121, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dardenne Prairie, Missouri 38.7565 -90.7319 matched with DB +City: Dardenne Prairie, state: Missouri, Lat: 38.7565, Lng: -90.7319, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Dorado, Kansas 37.8210 -96.8613 matched with DB +City: El Dorado, state: Kansas, Lat: 37.821, Lng: -96.8613, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: El Dorado, Kansas 37.8210 -96.8613 matched with DB +City: El Dorado, state: Arkansas, Lat: 33.2184, Lng: -92.664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Texas 32.2041 -95.8321 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Texas 32.2041 -95.8321 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Texas 32.2041 -95.8321 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Texas 32.2041 -95.8321 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Texas 32.2041 -95.8321 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Suamico, Wisconsin 44.6354 -88.0683 matched with DB +City: Suamico, state: Wisconsin, Lat: 44.6354, Lng: -88.0683, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Home, Arkansas 36.3351 -92.3840 matched with DB +City: Mountain Home, state: Arkansas, Lat: 36.3351, Lng: -92.384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mountain Home, Arkansas 36.3351 -92.3840 matched with DB +City: Mountain Home, state: Idaho, Lat: 43.1324, Lng: -115.697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Wisconsin 44.1935 -88.2941 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Wisconsin 44.1935 -88.2941 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Wisconsin 44.1935 -88.2941 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Wisconsin 44.1935 -88.2941 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Wisconsin 44.1935 -88.2941 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Wisconsin 44.1935 -88.2941 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smyrna, Delaware 39.2935 -75.6083 matched with DB +City: Smyrna, state: Delaware, Lat: 39.2935, Lng: -75.6083, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, Delaware 39.2935 -75.6083 matched with DB +City: Smyrna, state: Georgia, Lat: 33.8633, Lng: -84.5168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, Delaware 39.2935 -75.6083 matched with DB +City: Smyrna, state: Tennessee, Lat: 35.9687, Lng: -86.5264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Finneytown, Ohio 39.2159 -84.5144 matched with DB +City: Finneytown, state: Ohio, Lat: 39.2159, Lng: -84.5144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Bank, New Jersey 40.3480 -74.0672 matched with DB +City: Red Bank, state: New Jersey, Lat: 40.348, Lng: -74.0672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Red Bank, New Jersey 40.3480 -74.0672 matched with DB +City: Red Bank, state: South Carolina, Lat: 33.9309, Lng: -81.2322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Red Bank, New Jersey 40.3480 -74.0672 matched with DB +City: Red Bank, state: Tennessee, Lat: 35.1117, Lng: -85.2962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodhaven, Michigan 42.1320 -83.2374 matched with DB +City: Woodhaven, state: Michigan, Lat: 42.132, Lng: -83.2374, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vadnais Heights, Minnesota 45.0570 -93.0748 matched with DB +City: Vadnais Heights, state: Minnesota, Lat: 45.057, Lng: -93.0748, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salisbury, New York 40.7454 -73.5604 matched with DB +City: Salisbury, state: New York, Lat: 40.7454, Lng: -73.5604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, New York 40.7454 -73.5604 matched with DB +City: Salisbury, state: Maryland, Lat: 38.3756, Lng: -75.5865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, New York 40.7454 -73.5604 matched with DB +City: Salisbury, state: North Carolina, Lat: 35.6658, Lng: -80.4905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, New York 40.7454 -73.5604 matched with DB +City: Salisbury, state: Massachusetts, Lat: 42.8465, Lng: -70.8616, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, New York 40.7454 -73.5604 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.038, Lng: -75.9961, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, New York 40.7454 -73.5604 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.5768, Lng: -75.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tehachapi, California 35.1276 -118.4744 matched with DB +City: Tehachapi, state: California, Lat: 35.1276, Lng: -118.4744, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheney, Washington 47.4901 -117.5790 matched with DB +City: Cheney, state: Washington, Lat: 47.4901, Lng: -117.579, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florida City, Florida 25.4418 -80.4685 matched with DB +City: Florida City, state: Florida, Lat: 25.4418, Lng: -80.4685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Emeryville, California 37.8382 -122.2932 matched with DB +City: Emeryville, state: California, Lat: 37.8382, Lng: -122.2932, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansdowne, Virginia 39.0844 -77.4839 matched with DB +City: Lansdowne, state: Pennsylvania, Lat: 39.9408, Lng: -75.276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansdowne, Virginia 39.0844 -77.4839 matched with DB +City: Lansdowne, state: Maryland, Lat: 39.2365, Lng: -76.6659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansdowne, Virginia 39.0844 -77.4839 matched with DB +City: Lansdowne, state: Virginia, Lat: 39.0844, Lng: -77.4839, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomsburg, Pennsylvania 41.0027 -76.4561 matched with DB +City: Bloomsburg, state: Pennsylvania, Lat: 41.0027, Lng: -76.4561, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugarland Run, Virginia 39.0309 -77.3762 matched with DB +City: Sugarland Run, state: Virginia, Lat: 39.0309, Lng: -77.3762, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tega Cay, South Carolina 35.0390 -81.0111 matched with DB +City: Tega Cay, state: South Carolina, Lat: 35.039, Lng: -81.0111, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tucson Estates, Arizona 32.1792 -111.1266 matched with DB +City: Tucson Estates, state: Arizona, Lat: 32.1792, Lng: -111.1266, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Overlea, Maryland 39.3642 -76.5175 matched with DB +City: Overlea, state: Maryland, Lat: 39.3642, Lng: -76.5175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Fe, Texas 29.3889 -95.1003 matched with DB +City: Santa Fe, state: New Mexico, Lat: 35.6619, Lng: -105.9819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Fe, Texas 29.3889 -95.1003 matched with DB +City: Santa Fe, state: Texas, Lat: 29.3889, Lng: -95.1003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florham Park, New Jersey 40.7773 -74.3953 matched with DB +City: Florham Park, state: New Jersey, Lat: 40.7773, Lng: -74.3953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Festus, Missouri 38.2194 -90.4097 matched with DB +City: Festus, state: Missouri, Lat: 38.2194, Lng: -90.4097, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Ohio 40.1043 -84.6209 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Anselmo, California 37.9821 -122.5699 matched with DB +City: San Anselmo, state: California, Lat: 37.9821, Lng: -122.5699, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grover Beach, California 35.1204 -120.6197 matched with DB +City: Grover Beach, state: California, Lat: 35.1204, Lng: -120.6197, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Bear City, California 34.2536 -116.7903 matched with DB +City: Big Bear City, state: California, Lat: 34.2536, Lng: -116.7903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eufaula, Alabama 31.9102 -85.1505 matched with DB +City: Eufaula, state: Alabama, Lat: 31.9102, Lng: -85.1505, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Accokeek, Maryland 38.6745 -77.0023 matched with DB +City: Accokeek, state: Maryland, Lat: 38.6745, Lng: -77.0023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guymon, Oklahoma 36.6903 -101.4774 matched with DB +City: Guymon, state: Oklahoma, Lat: 36.6903, Lng: -101.4774, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Ohio 41.4022 -82.2303 matched with DB +City: Amherst, state: Ohio, Lat: 41.4022, Lng: -82.2303, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Ohio 41.4022 -82.2303 matched with DB +City: Amherst, state: New Hampshire, Lat: 42.8706, Lng: -71.6068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Ohio 41.4022 -82.2303 matched with DB +City: Amherst, state: New York, Lat: 43.0117, Lng: -78.757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, New Jersey 41.0313 -74.2408 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, New Jersey 41.0313 -74.2408 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, New Jersey 41.0313 -74.2408 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richton Park, Illinois 41.4816 -87.7387 matched with DB +City: Richton Park, state: Illinois, Lat: 41.4816, Lng: -87.7387, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annapolis Neck, Maryland 38.9409 -76.4997 matched with DB +City: Annapolis Neck, state: Maryland, Lat: 38.9409, Lng: -76.4997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Marys, Pennsylvania 41.4574 -78.5342 matched with DB +City: St. Marys, state: Pennsylvania, Lat: 41.4574, Lng: -78.5342, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Marys, Pennsylvania 41.4574 -78.5342 matched with DB +City: St. Marys, state: Georgia, Lat: 30.7567, Lng: -81.5722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northlake, Illinois 41.9142 -87.9054 matched with DB +City: Northlake, state: Illinois, Lat: 41.9142, Lng: -87.9054, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manorville, New York 40.8574 -72.7915 matched with DB +City: Manorville, state: New York, Lat: 40.8574, Lng: -72.7915, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, California 39.1518 -121.5835 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, California 39.1518 -121.5835 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, California 39.1518 -121.5835 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, California 39.1518 -121.5835 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise Valley, Arizona 33.5434 -111.9595 matched with DB +City: Paradise Valley, state: Arizona, Lat: 33.5434, Lng: -111.9595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Neosho, Missouri 36.8437 -94.3758 matched with DB +City: Neosho, state: Missouri, Lat: 36.8437, Lng: -94.3758, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, New York 42.8645 -76.9826 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, New York 42.8645 -76.9826 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmington, Ohio 39.4362 -83.8141 matched with DB +City: Wilmington, state: Delaware, Lat: 39.7415, Lng: -75.5416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Ohio 39.4362 -83.8141 matched with DB +City: Wilmington, state: Ohio, Lat: 39.4362, Lng: -83.8141, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Ohio 39.4362 -83.8141 matched with DB +City: Wilmington, state: North Carolina, Lat: 34.2099, Lng: -77.8866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Ohio 39.4362 -83.8141 matched with DB +City: Wilmington, state: Massachusetts, Lat: 42.5609, Lng: -71.1654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunkirk, New York 42.4801 -79.3324 matched with DB +City: Dunkirk, state: New York, Lat: 42.4801, Lng: -79.3324, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fords, New Jersey 40.5359 -74.3126 matched with DB +City: Fords, state: New Jersey, Lat: 40.5359, Lng: -74.3126, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vineyard, Utah 40.3059 -111.7545 matched with DB +City: Vineyard, state: California, Lat: 38.474, Lng: -121.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vineyard, Utah 40.3059 -111.7545 matched with DB +City: Vineyard, state: Utah, Lat: 40.3059, Lng: -111.7545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wickliffe, Ohio 41.6072 -81.4690 matched with DB +City: Wickliffe, state: Ohio, Lat: 41.6072, Lng: -81.469, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kelso, Washington 46.1236 -122.8909 matched with DB +City: Kelso, state: Washington, Lat: 46.1236, Lng: -122.8909, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pasadena Hills, Florida 28.2881 -82.2380 matched with DB +City: Pasadena Hills, state: Florida, Lat: 28.2881, Lng: -82.238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gaffney, South Carolina 35.0743 -81.6552 matched with DB +City: Gaffney, state: South Carolina, Lat: 35.0743, Lng: -81.6552, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Branson, Missouri 36.6509 -93.2636 matched with DB +City: Branson, state: Missouri, Lat: 36.6509, Lng: -93.2636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Missouri 38.8551 -91.9510 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Missouri 38.8551 -91.9510 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newington Forest, Virginia 38.7370 -77.2339 matched with DB +City: Newington Forest, state: Virginia, Lat: 38.737, Lng: -77.2339, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robertsville, New Jersey 40.3395 -74.2939 matched with DB +City: Robertsville, state: New Jersey, Lat: 40.3395, Lng: -74.2939, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holiday City-Berkeley, New Jersey 39.9639 -74.2787 matched with DB +City: Holiday City-Berkeley, state: New Jersey, Lat: 39.9639, Lng: -74.2787, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melvindale, Michigan 42.2802 -83.1782 matched with DB +City: Melvindale, state: Michigan, Lat: 42.2802, Lng: -83.1782, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Artesia, New Mexico 32.8497 -104.4268 matched with DB +City: Artesia, state: California, Lat: 33.8676, Lng: -118.0805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Artesia, New Mexico 32.8497 -104.4268 matched with DB +City: Artesia, state: New Mexico, Lat: 32.8497, Lng: -104.4268, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tomball, Texas 30.0951 -95.6194 matched with DB +City: Tomball, state: Texas, Lat: 30.0951, Lng: -95.6194, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enumclaw, Washington 47.2018 -121.9897 matched with DB +City: Enumclaw, state: Washington, Lat: 47.2018, Lng: -121.9897, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ottawa, Kansas 38.5996 -95.2636 matched with DB +City: Ottawa, state: Kansas, Lat: 38.5996, Lng: -95.2636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ottawa, Kansas 38.5996 -95.2636 matched with DB +City: Ottawa, state: Illinois, Lat: 41.3555, Lng: -88.8261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Levelland, Texas 33.5806 -102.3635 matched with DB +City: Levelland, state: Texas, Lat: 33.5806, Lng: -102.3635, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winnetka, Illinois 42.1064 -87.7421 matched with DB +City: Winnetka, state: Illinois, Lat: 42.1064, Lng: -87.7421, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minooka, Illinois 41.4507 -88.2791 matched with DB +City: Minooka, state: Illinois, Lat: 41.4507, Lng: -88.2791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland South, Washington 47.2786 -122.2826 matched with DB +City: Lakeland South, state: Washington, Lat: 47.2786, Lng: -122.2826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendota, California 36.7555 -120.3776 matched with DB +City: Mendota, state: California, Lat: 36.7555, Lng: -120.3776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grenada, Mississippi 33.7816 -89.8130 matched with DB +City: Grenada, state: Mississippi, Lat: 33.7816, Lng: -89.813, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brown Deer, Wisconsin 43.1743 -87.9750 matched with DB +City: Brown Deer, state: Wisconsin, Lat: 43.1743, Lng: -87.975, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy, Oregon 45.3988 -122.2697 matched with DB +City: Sandy, state: Pennsylvania, Lat: 41.1447, Lng: -78.7295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sandy, Oregon 45.3988 -122.2697 matched with DB +City: Sandy, state: Oregon, Lat: 45.3988, Lng: -122.2697, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sandy, Oregon 45.3988 -122.2697 matched with DB +City: Sandy, state: Utah, Lat: 40.5709, Lng: -111.8506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindsay, California 36.2082 -119.0897 matched with DB +City: Lindsay, state: California, Lat: 36.2082, Lng: -119.0897, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jensen Beach, Florida 27.2437 -80.2423 matched with DB +City: Jensen Beach, state: Florida, Lat: 27.2437, Lng: -80.2423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloquet, Minnesota 46.7221 -92.4923 matched with DB +City: Cloquet, state: Minnesota, Lat: 46.7221, Lng: -92.4923, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Viera East, Florida 28.2613 -80.7149 matched with DB +City: Viera East, state: Florida, Lat: 28.2613, Lng: -80.7149, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rantoul, Illinois 40.3031 -88.1549 matched with DB +City: Rantoul, state: Illinois, Lat: 40.3031, Lng: -88.1549, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cascades, Virginia 39.0464 -77.3874 matched with DB +City: Cascades, state: Virginia, Lat: 39.0464, Lng: -77.3874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baraboo, Wisconsin 43.4695 -89.7376 matched with DB +City: Baraboo, state: Wisconsin, Lat: 43.4695, Lng: -89.7376, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brock Hall, Maryland 38.8604 -76.7459 matched with DB +City: Brock Hall, state: Maryland, Lat: 38.8604, Lng: -76.7459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fortuna, California 40.5862 -124.1419 matched with DB +City: Fortuna, state: California, Lat: 40.5862, Lng: -124.1419, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Norman of Catawba, North Carolina 35.5995 -80.9840 matched with DB +City: Lake Norman of Catawba, state: North Carolina, Lat: 35.5995, Lng: -80.984, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Justice, Illinois 41.7495 -87.8345 matched with DB +City: Justice, state: Illinois, Lat: 41.7495, Lng: -87.8345, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Atkinson, Wisconsin 42.9253 -88.8442 matched with DB +City: Fort Atkinson, state: Wisconsin, Lat: 42.9253, Lng: -88.8442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Asbury Lake, Florida 30.0472 -81.7853 matched with DB +City: Asbury Lake, state: Florida, Lat: 30.0472, Lng: -81.7853, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Bliss, Texas 31.8396 -106.3747 matched with DB +City: Fort Bliss, state: Texas, Lat: 31.8396, Lng: -106.3747, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Borger, Texas 35.6598 -101.4012 matched with DB +City: Borger, state: Texas, Lat: 35.6598, Lng: -101.4012, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stony Brook, New York 40.9061 -73.1278 matched with DB +City: Stony Brook, state: New York, Lat: 40.9061, Lng: -73.1278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sarasota Springs, Florida 27.3087 -82.4746 matched with DB +City: Sarasota Springs, state: Florida, Lat: 27.3087, Lng: -82.4746, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goldenrod, Florida 28.6114 -81.2916 matched with DB +City: Goldenrod, state: Florida, Lat: 28.6114, Lng: -81.2916, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Georgia 31.9849 -81.2260 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Georgia 31.9849 -81.2260 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Georgia 31.9849 -81.2260 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsburg, California 36.5244 -119.5602 matched with DB +City: Kingsburg, state: California, Lat: 36.5244, Lng: -119.5602, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boone, Iowa 42.0531 -93.8770 matched with DB +City: Boone, state: Iowa, Lat: 42.0531, Lng: -93.877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Boone, Iowa 42.0531 -93.8770 matched with DB +City: Boone, state: North Carolina, Lat: 36.2111, Lng: -81.6669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jerome, Idaho 42.7179 -114.5159 matched with DB +City: Jerome, state: Idaho, Lat: 42.7179, Lng: -114.5159, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poquoson, Virginia 37.1318 -76.3568 matched with DB +City: Poquoson, state: Virginia, Lat: 37.1318, Lng: -76.3568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robinson, Texas 31.4501 -97.1201 matched with DB +City: Robinson, state: Texas, Lat: 31.4501, Lng: -97.1201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Robinson, Texas 31.4501 -97.1201 matched with DB +City: Robinson, state: Pennsylvania, Lat: 40.4578, Lng: -80.1334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sedro-Woolley, Washington 48.5112 -122.2321 matched with DB +City: Sedro-Woolley, state: Washington, Lat: 48.5112, Lng: -122.2321, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, New Jersey 40.5696 -74.6092 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, New Jersey 40.5696 -74.6092 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, South Carolina 34.8513 -82.4512 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, South Carolina 34.8513 -82.4512 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sylacauga, Alabama 33.1780 -86.2605 matched with DB +City: Sylacauga, state: Alabama, Lat: 33.178, Lng: -86.2605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North St. Paul, Minnesota 45.0137 -92.9995 matched with DB +City: North St. Paul, state: Minnesota, Lat: 45.0137, Lng: -92.9995, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, Louisiana 30.5832 -91.1582 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland City, Florida 27.9633 -81.8781 matched with DB +City: Highland City, state: Florida, Lat: 27.9633, Lng: -81.8781, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Washington, Wisconsin 43.3846 -87.8855 matched with DB +City: Port Washington, state: Wisconsin, Lat: 43.3846, Lng: -87.8855, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Port Washington, Wisconsin 43.3846 -87.8855 matched with DB +City: Port Washington, state: New York, Lat: 40.8268, Lng: -73.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prairie Ridge, Washington 47.1438 -122.1408 matched with DB +City: Prairie Ridge, state: Washington, Lat: 47.1438, Lng: -122.1408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Marino, California 34.1224 -118.1132 matched with DB +City: San Marino, state: California, Lat: 34.1224, Lng: -118.1132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upper Montclair, New Jersey 40.8433 -74.2006 matched with DB +City: Upper Montclair, state: New Jersey, Lat: 40.8433, Lng: -74.2006, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wimauma, Florida 27.6964 -82.3034 matched with DB +City: Wimauma, state: Florida, Lat: 27.6964, Lng: -82.3034, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Escanaba, Michigan 45.7477 -87.0900 matched with DB +City: Escanaba, state: Michigan, Lat: 45.7477, Lng: -87.09, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mango, Florida 27.9914 -82.3070 matched with DB +City: Mango, state: Florida, Lat: 27.9914, Lng: -82.307, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Washington 47.2309 -122.2832 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Washington 47.2309 -122.2832 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, Michigan 42.1723 -83.1946 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, Michigan 42.1723 -83.1946 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amelia, Ohio 39.0269 -84.2218 matched with DB +City: Amelia, state: Ohio, Lat: 39.0269, Lng: -84.2218, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: College, Alaska 64.8694 -147.8216 matched with DB +City: College, state: Alaska, Lat: 64.8694, Lng: -147.8216, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: College, Alaska 64.8694 -147.8216 matched with DB +City: College, state: Pennsylvania, Lat: 40.8144, Lng: -77.8172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisburg, Tennessee 35.4510 -86.7901 matched with DB +City: Lewisburg, state: Tennessee, Lat: 35.451, Lng: -86.7901, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Derby, Connecticut 41.3265 -73.0833 matched with DB +City: Derby, state: Connecticut, Lat: 41.3265, Lng: -73.0833, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Connecticut 41.3265 -73.0833 matched with DB +City: Derby, state: Kansas, Lat: 37.5571, Lng: -97.2551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Connecticut 41.3265 -73.0833 matched with DB +City: Derby, state: Colorado, Lat: 39.84, Lng: -104.9172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conneaut, Ohio 41.9275 -80.5685 matched with DB +City: Conneaut, state: Ohio, Lat: 41.9275, Lng: -80.5685, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nanakuli, Hawaii 21.3892 -158.1445 matched with DB +City: Nanakuli, state: Hawaii, Lat: 21.3892, Lng: -158.1445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsville, New Jersey 40.6030 -74.5751 matched with DB +City: Martinsville, state: Virginia, Lat: 36.6826, Lng: -79.8636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, New Jersey 40.6030 -74.5751 matched with DB +City: Martinsville, state: Indiana, Lat: 39.4149, Lng: -86.4316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, New Jersey 40.6030 -74.5751 matched with DB +City: Martinsville, state: New Jersey, Lat: 40.603, Lng: -74.5751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gonzales, Louisiana 30.2132 -90.9234 matched with DB +City: Gonzales, state: Louisiana, Lat: 30.2132, Lng: -90.9234, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gonzales, Louisiana 30.2132 -90.9234 matched with DB +City: Gonzales, state: California, Lat: 36.5055, Lng: -121.4427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackfoot, Idaho 43.1940 -112.3454 matched with DB +City: Blackfoot, state: Idaho, Lat: 43.194, Lng: -112.3454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Herrin, Illinois 37.7983 -89.0305 matched with DB +City: Herrin, state: Illinois, Lat: 37.7983, Lng: -89.0305, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patchogue, New York 40.7621 -73.0185 matched with DB +City: Patchogue, state: New York, Lat: 40.7621, Lng: -73.0185, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Missouri 38.4399 -90.9927 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Missouri 38.4399 -90.9927 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Missouri 38.4399 -90.9927 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Tennessee 35.4630 -86.0774 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Tennessee 35.4630 -86.0774 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Tennessee 35.4630 -86.0774 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Tennessee 35.4630 -86.0774 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Tennessee 35.4630 -86.0774 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Tennessee 35.4630 -86.0774 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestwood, Missouri 38.5569 -90.3783 matched with DB +City: Crestwood, state: Missouri, Lat: 38.5569, Lng: -90.3783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Crestwood, Missouri 38.5569 -90.3783 matched with DB +City: Crestwood, state: Illinois, Lat: 41.6454, Lng: -87.7397, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, Arizona 34.7195 -112.0016 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cypress Lake, Florida 26.5392 -81.8999 matched with DB +City: Cypress Lake, state: Florida, Lat: 26.5392, Lng: -81.8999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean Pines, Maryland 38.3851 -75.1487 matched with DB +City: Ocean Pines, state: Maryland, Lat: 38.3851, Lng: -75.1487, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Florida 30.1901 -82.6471 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Idaho 43.6526 -116.2743 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Idaho 43.6526 -116.2743 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Idaho 43.6526 -116.2743 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Idaho 43.6526 -116.2743 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Idaho 43.6526 -116.2743 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Idaho 43.6526 -116.2743 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Indiana 38.7581 -85.3973 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Indiana 38.7581 -85.3973 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Indiana 38.7581 -85.3973 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Indiana 38.7581 -85.3973 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Indiana 38.7581 -85.3973 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, Texas 29.5317 -95.1188 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Texas 29.5317 -95.1188 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Texas 29.5317 -95.1188 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson Hills, Pennsylvania 40.2926 -79.9329 matched with DB +City: Jefferson Hills, state: Pennsylvania, Lat: 40.2926, Lng: -79.9329, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McComb, Mississippi 31.2442 -90.4716 matched with DB +City: McComb, state: Mississippi, Lat: 31.2442, Lng: -90.4716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leeds, Alabama 33.5436 -86.5639 matched with DB +City: Leeds, state: Alabama, Lat: 33.5436, Lng: -86.5639, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Streator, Illinois 41.1245 -88.8297 matched with DB +City: Streator, state: Illinois, Lat: 41.1245, Lng: -88.8297, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Home Gardens, California 33.8783 -117.5116 matched with DB +City: Home Gardens, state: California, Lat: 33.8783, Lng: -117.5116, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Doctor Phillips, Florida 28.4474 -81.4914 matched with DB +City: Doctor Phillips, state: Florida, Lat: 28.4474, Lng: -81.4914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax Station, Virginia 38.7942 -77.3358 matched with DB +City: Fairfax Station, state: Virginia, Lat: 38.7942, Lng: -77.3358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newman, California 37.3156 -121.0212 matched with DB +City: Newman, state: California, Lat: 37.3156, Lng: -121.0212, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spearfish, South Dakota 44.4909 -103.8155 matched with DB +City: Spearfish, state: South Dakota, Lat: 44.4909, Lng: -103.8155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commerce, California 33.9963 -118.1519 matched with DB +City: Commerce, state: California, Lat: 33.9963, Lng: -118.1519, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Commerce, California 33.9963 -118.1519 matched with DB +City: Commerce, state: Texas, Lat: 33.2421, Lng: -95.8992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Plains, Missouri 36.7377 -91.8680 matched with DB +City: West Plains, state: Missouri, Lat: 36.7377, Lng: -91.868, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Effingham, Illinois 39.1205 -88.5509 matched with DB +City: Effingham, state: Illinois, Lat: 39.1205, Lng: -88.5509, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Campo, Texas 29.2000 -96.2723 matched with DB +City: El Campo, state: Texas, Lat: 29.2, Lng: -96.2723, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scotts Valley, California 37.0555 -122.0118 matched with DB +City: Scotts Valley, state: California, Lat: 37.0555, Lng: -122.0118, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beatrice, Nebraska 40.2736 -96.7455 matched with DB +City: Beatrice, state: Nebraska, Lat: 40.2736, Lng: -96.7455, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedarburg, Wisconsin 43.2990 -87.9887 matched with DB +City: Cedarburg, state: Wisconsin, Lat: 43.299, Lng: -87.9887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Diamond Springs, California 38.6920 -120.8391 matched with DB +City: Diamond Springs, state: California, Lat: 38.692, Lng: -120.8391, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tamalpais-Homestead Valley, California 37.8793 -122.5382 matched with DB +City: Tamalpais-Homestead Valley, state: California, Lat: 37.8793, Lng: -122.5382, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Tapps, Washington 47.2307 -122.1695 matched with DB +City: Lake Tapps, state: Washington, Lat: 47.2307, Lng: -122.1695, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Merrick, New York 40.6871 -73.5615 matched with DB +City: North Merrick, state: New York, Lat: 40.6871, Lng: -73.5615, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kewanee, Illinois 41.2399 -89.9264 matched with DB +City: Kewanee, state: Illinois, Lat: 41.2399, Lng: -89.9264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moss Point, Mississippi 30.4241 -88.5289 matched with DB +City: Moss Point, state: Mississippi, Lat: 30.4241, Lng: -88.5289, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Kensington, Pennsylvania 40.5712 -79.7523 matched with DB +City: New Kensington, state: Pennsylvania, Lat: 40.5712, Lng: -79.7523, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, Wisconsin 43.3204 -87.9480 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, Wisconsin 43.3204 -87.9480 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claiborne, Louisiana 32.5379 -92.1981 matched with DB +City: Claiborne, state: Louisiana, Lat: 32.5379, Lng: -92.1981, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Choctaw, Oklahoma 35.4802 -97.2666 matched with DB +City: Choctaw, state: Oklahoma, Lat: 35.4802, Lng: -97.2666, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dranesville, Virginia 38.9955 -77.3693 matched with DB +City: Dranesville, state: Virginia, Lat: 38.9955, Lng: -77.3693, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camp Verde, Arizona 34.5690 -111.8560 matched with DB +City: Camp Verde, state: Arizona, Lat: 34.569, Lng: -111.856, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Sobrante, California 33.8724 -117.4624 matched with DB +City: El Sobrante, state: California, Lat: 33.8724, Lng: -117.4624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macedonia, Ohio 41.3147 -81.4989 matched with DB +City: Macedonia, state: Ohio, Lat: 41.3147, Lng: -81.4989, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Virginia 37.6132 -77.4768 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Virginia 37.6132 -77.4768 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Virginia 37.6132 -77.4768 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riviera Beach, Maryland 39.1623 -76.5257 matched with DB +City: Riviera Beach, state: Maryland, Lat: 39.1623, Lng: -76.5257, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riviera Beach, Maryland 39.1623 -76.5257 matched with DB +City: Riviera Beach, state: Florida, Lat: 26.7813, Lng: -80.0741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maili, Hawaii 21.4133 -158.1701 matched with DB +City: Maili, state: Hawaii, Lat: 21.4133, Lng: -158.1701, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyndham, Virginia 37.6924 -77.6123 matched with DB +City: Wyndham, state: Virginia, Lat: 37.6924, Lng: -77.6123, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Baltimore, Michigan 42.6904 -82.7398 matched with DB +City: New Baltimore, state: Michigan, Lat: 42.6904, Lng: -82.7398, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Baltimore, Michigan 42.6904 -82.7398 matched with DB +City: New Baltimore, state: Virginia, Lat: 38.7495, Lng: -77.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchellville, Maryland 38.9358 -76.8146 matched with DB +City: Mitchellville, state: Maryland, Lat: 38.9358, Lng: -76.8146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crossville, Tennessee 35.9526 -85.0295 matched with DB +City: Crossville, state: Tennessee, Lat: 35.9526, Lng: -85.0295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centralia, Illinois 38.5224 -89.1232 matched with DB +City: Centralia, state: Illinois, Lat: 38.5224, Lng: -89.1232, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centralia, Illinois 38.5224 -89.1232 matched with DB +City: Centralia, state: Washington, Lat: 46.7223, Lng: -122.9696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Myrtle Grove, North Carolina 34.1230 -77.8834 matched with DB +City: Myrtle Grove, state: North Carolina, Lat: 34.123, Lng: -77.8834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Myrtle Grove, North Carolina 34.1230 -77.8834 matched with DB +City: Myrtle Grove, state: Florida, Lat: 30.4158, Lng: -87.3027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Rock, New Jersey 40.9601 -74.1250 matched with DB +City: Glen Rock, state: New Jersey, Lat: 40.9601, Lng: -74.125, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portales, New Mexico 34.1754 -103.3565 matched with DB +City: Portales, state: New Mexico, Lat: 34.1754, Lng: -103.3565, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hasbrouck Heights, New Jersey 40.8618 -74.0741 matched with DB +City: Hasbrouck Heights, state: New Jersey, Lat: 40.8618, Lng: -74.0741, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Renton Highlands, Washington 47.4718 -122.0854 matched with DB +City: East Renton Highlands, state: Washington, Lat: 47.4718, Lng: -122.0854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Indiana 38.6586 -87.1591 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Falls, Rhode Island 41.9233 -71.3924 matched with DB +City: Valley Falls, state: Rhode Island, Lat: 41.9233, Lng: -71.3924, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodward, Oklahoma 36.4247 -99.4058 matched with DB +City: Woodward, state: Oklahoma, Lat: 36.4247, Lng: -99.4058, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mays Chapel, Maryland 39.4343 -76.6516 matched with DB +City: Mays Chapel, state: Maryland, Lat: 39.4343, Lng: -76.6516, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Destrehan, Louisiana 29.9626 -90.3676 matched with DB +City: Destrehan, state: Louisiana, Lat: 29.9626, Lng: -90.3676, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardnerville Ranchos, Nevada 38.8957 -119.7492 matched with DB +City: Gardnerville Ranchos, state: Nevada, Lat: 38.8957, Lng: -119.7492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Honeygo, Maryland 39.4055 -76.4282 matched with DB +City: Honeygo, state: Maryland, Lat: 39.4055, Lng: -76.4282, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Peter, Minnesota 44.3295 -93.9658 matched with DB +City: St. Peter, state: Minnesota, Lat: 44.3295, Lng: -93.9658, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Celebration, Florida 28.3102 -81.5510 matched with DB +City: Celebration, state: Florida, Lat: 28.3102, Lng: -81.551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty Lake, Washington 47.6686 -117.1036 matched with DB +City: Liberty Lake, state: Washington, Lat: 47.6686, Lng: -117.1036, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosaryville, Maryland 38.7672 -76.8266 matched with DB +City: Rosaryville, state: Maryland, Lat: 38.7672, Lng: -76.8266, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Edge, New Jersey 40.9269 -74.0387 matched with DB +City: River Edge, state: New Jersey, Lat: 40.9269, Lng: -74.0387, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Key Largo, Florida 25.1224 -80.4120 matched with DB +City: Key Largo, state: Florida, Lat: 25.1224, Lng: -80.412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yeadon, Pennsylvania 39.9325 -75.2527 matched with DB +City: Yeadon, state: Pennsylvania, Lat: 39.9325, Lng: -75.2527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Campbell North, Kentucky 36.6631 -87.4764 matched with DB +City: Fort Campbell North, state: Kentucky, Lat: 36.6631, Lng: -87.4764, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saddlebrooke, Arizona 32.5576 -110.8740 matched with DB +City: Saddlebrooke, state: Arizona, Lat: 32.5576, Lng: -110.874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monfort Heights, Ohio 39.1823 -84.6075 matched with DB +City: Monfort Heights, state: Ohio, Lat: 39.1823, Lng: -84.6075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Missouri 38.5004 -90.6491 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Missouri 38.5004 -90.6491 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verde Village, Arizona 34.7119 -111.9941 matched with DB +City: Verde Village, state: Arizona, Lat: 34.7119, Lng: -111.9941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weatherford, Oklahoma 35.5380 -98.6853 matched with DB +City: Weatherford, state: Oklahoma, Lat: 35.538, Lng: -98.6853, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weatherford, Oklahoma 35.5380 -98.6853 matched with DB +City: Weatherford, state: Texas, Lat: 32.7536, Lng: -97.7723, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: View Park-Windsor Hills, California 33.9955 -118.3483 matched with DB +City: View Park-Windsor Hills, state: California, Lat: 33.9955, Lng: -118.3483, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Kentucky 37.0834 -84.6109 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Kentucky 37.0834 -84.6109 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Kentucky 37.0834 -84.6109 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arkansas City, Kansas 37.0726 -97.0385 matched with DB +City: Arkansas City, state: Kansas, Lat: 37.0726, Lng: -97.0385, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gladstone, Oregon 45.3864 -122.5934 matched with DB +City: Gladstone, state: Missouri, Lat: 39.2134, Lng: -94.5592, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gladstone, Oregon 45.3864 -122.5934 matched with DB +City: Gladstone, state: Oregon, Lat: 45.3864, Lng: -122.5934, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somersworth, New Hampshire 43.2534 -70.8856 matched with DB +City: Somersworth, state: New Hampshire, Lat: 43.2534, Lng: -70.8856, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winton, California 37.3854 -120.6173 matched with DB +City: Winton, state: California, Lat: 37.3854, Lng: -120.6173, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Star, Idaho 43.7026 -116.4914 matched with DB +City: Star, state: Idaho, Lat: 43.7026, Lng: -116.4914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fenton, Michigan 42.7994 -83.7144 matched with DB +City: Fenton, state: Michigan, Lat: 42.7994, Lng: -83.7144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palos Heights, Illinois 41.6637 -87.7958 matched with DB +City: Palos Heights, state: Illinois, Lat: 41.6637, Lng: -87.7958, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Miami, Florida 25.7079 -80.2952 matched with DB +City: South Miami, state: Florida, Lat: 25.7079, Lng: -80.2952, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goulds, Florida 25.5614 -80.3880 matched with DB +City: Goulds, state: Florida, Lat: 25.5614, Lng: -80.388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Texas 29.5824 -95.7563 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Texas 29.5824 -95.7563 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Texas 29.5824 -95.7563 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Texas 29.5824 -95.7563 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Texas 29.5824 -95.7563 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Virginia 37.4902 -77.5396 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Virginia 37.4902 -77.5396 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Virginia 37.4902 -77.5396 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Virginia 37.4902 -77.5396 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Virginia 37.4902 -77.5396 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Virginia 37.4902 -77.5396 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Bank, Tennessee 35.1117 -85.2962 matched with DB +City: Red Bank, state: New Jersey, Lat: 40.348, Lng: -74.0672, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Red Bank, Tennessee 35.1117 -85.2962 matched with DB +City: Red Bank, state: South Carolina, Lat: 33.9309, Lng: -81.2322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Red Bank, Tennessee 35.1117 -85.2962 matched with DB +City: Red Bank, state: Tennessee, Lat: 35.1117, Lng: -85.2962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gig Harbor, Washington 47.3352 -122.5964 matched with DB +City: Gig Harbor, state: Washington, Lat: 47.3352, Lng: -122.5964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsville, Indiana 39.4149 -86.4316 matched with DB +City: Martinsville, state: Virginia, Lat: 36.6826, Lng: -79.8636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Indiana 39.4149 -86.4316 matched with DB +City: Martinsville, state: Indiana, Lat: 39.4149, Lng: -86.4316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Indiana 39.4149 -86.4316 matched with DB +City: Martinsville, state: New Jersey, Lat: 40.603, Lng: -74.5751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bound Brook, New Jersey 40.5676 -74.5383 matched with DB +City: Bound Brook, state: New Jersey, Lat: 40.5676, Lng: -74.5383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Box Elder, South Dakota 44.1120 -103.0818 matched with DB +City: Box Elder, state: South Dakota, Lat: 44.112, Lng: -103.0818, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Bethel, Minnesota 45.3557 -93.2038 matched with DB +City: East Bethel, state: Minnesota, Lat: 45.3557, Lng: -93.2038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton Square, New Jersey 40.2248 -74.6526 matched with DB +City: Hamilton Square, state: New Jersey, Lat: 40.2248, Lng: -74.6526, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Archdale, North Carolina 35.9032 -79.9591 matched with DB +City: Archdale, state: North Carolina, Lat: 35.9032, Lng: -79.9591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niles, Michigan 41.8346 -86.2473 matched with DB +City: Niles, state: Michigan, Lat: 41.8346, Lng: -86.2473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Michigan 41.8346 -86.2473 matched with DB +City: Niles, state: Ohio, Lat: 41.1879, Lng: -80.7531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Michigan 41.8346 -86.2473 matched with DB +City: Niles, state: Illinois, Lat: 42.0278, Lng: -87.8099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linganore, Maryland 39.4127 -77.3014 matched with DB +City: Linganore, state: Maryland, Lat: 39.4127, Lng: -77.3014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Ohio 40.9049 -80.8492 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Ohio 40.9049 -80.8492 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Ohio 40.9049 -80.8492 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Ohio 40.9049 -80.8492 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Ohio 40.9049 -80.8492 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Ohio 40.9049 -80.8492 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Elmo, Minnesota 44.9944 -92.9031 matched with DB +City: Lake Elmo, state: Minnesota, Lat: 44.9944, Lng: -92.9031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Florida 27.1507 -82.4534 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Florida 27.1507 -82.4534 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Florida 27.1507 -82.4534 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Florida 27.1507 -82.4534 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Lake, Minnesota 45.3417 -93.7434 matched with DB +City: Big Lake, state: Minnesota, Lat: 45.3417, Lng: -93.7434, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miller Place, New York 40.9374 -72.9864 matched with DB +City: Miller Place, state: New York, Lat: 40.9374, Lng: -72.9864, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wallington, New Jersey 40.8536 -74.1069 matched with DB +City: Wallington, state: New Jersey, Lat: 40.8536, Lng: -74.1069, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleburg, Florida 30.0502 -81.9011 matched with DB +City: Middleburg, state: Florida, Lat: 30.0502, Lng: -81.9011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alum Rock, California 37.3694 -121.8238 matched with DB +City: Alum Rock, state: California, Lat: 37.3694, Lng: -121.8238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Endwell, New York 42.1184 -76.0219 matched with DB +City: Endwell, state: New York, Lat: 42.1184, Lng: -76.0219, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poulsbo, Washington 47.7417 -122.6407 matched with DB +City: Poulsbo, state: Washington, Lat: 47.7417, Lng: -122.6407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Castle Pines, Colorado 39.4625 -104.8706 matched with DB +City: Castle Pines, state: Colorado, Lat: 39.4625, Lng: -104.8706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown, Pennsylvania 40.1533 -76.5990 matched with DB +City: Elizabethtown, state: Pennsylvania, Lat: 40.1533, Lng: -76.599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elizabethtown, Pennsylvania 40.1533 -76.5990 matched with DB +City: Elizabethtown, state: Kentucky, Lat: 37.7031, Lng: -85.8773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Yarmouth, Massachusetts 41.6692 -70.2005 matched with DB +City: South Yarmouth, state: Massachusetts, Lat: 41.6692, Lng: -70.2005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Kansas 37.2740 -96.9500 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Kansas 37.2740 -96.9500 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Picayune, Mississippi 30.5322 -89.6724 matched with DB +City: Picayune, state: Mississippi, Lat: 30.5322, Lng: -89.6724, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muscoy, California 34.1552 -117.3477 matched with DB +City: Muscoy, state: California, Lat: 34.1552, Lng: -117.3477, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evanston, Wyoming 41.2602 -110.9646 matched with DB +City: Evanston, state: Illinois, Lat: 42.0464, Lng: -87.6943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evanston, Wyoming 41.2602 -110.9646 matched with DB +City: Evanston, state: Wyoming, Lat: 41.2602, Lng: -110.9646, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Chute, Wisconsin 44.2906 -88.3208 matched with DB +City: Little Chute, state: Wisconsin, Lat: 44.2906, Lng: -88.3208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gulfport, Florida 27.7463 -82.7099 matched with DB +City: Gulfport, state: Mississippi, Lat: 30.4274, Lng: -89.0704, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gulfport, Florida 27.7463 -82.7099 matched with DB +City: Gulfport, state: Florida, Lat: 27.7463, Lng: -82.7099, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Top, Pennsylvania 41.1353 -75.9045 matched with DB +City: Mountain Top, state: Pennsylvania, Lat: 41.1353, Lng: -75.9045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minden, Louisiana 32.6187 -93.2762 matched with DB +City: Minden, state: Louisiana, Lat: 32.6187, Lng: -93.2762, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Hills, Oregon 45.5405 -122.8413 matched with DB +City: Oak Hills, state: Oregon, Lat: 45.5405, Lng: -122.8413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tarrytown, New York 41.0647 -73.8672 matched with DB +City: Tarrytown, state: New York, Lat: 41.0647, Lng: -73.8672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green River, Wyoming 41.5127 -109.4710 matched with DB +City: Green River, state: Wyoming, Lat: 41.5127, Lng: -109.471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Show Low, Arizona 34.2671 -110.0384 matched with DB +City: Show Low, state: Arizona, Lat: 34.2671, Lng: -110.0384, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guttenberg, New Jersey 40.7928 -74.0049 matched with DB +City: Guttenberg, state: New Jersey, Lat: 40.7928, Lng: -74.0049, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mack, Ohio 39.1492 -84.6794 matched with DB +City: Mack, state: Ohio, Lat: 39.1492, Lng: -84.6794, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Wisconsin 43.2372 -88.2413 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Wisconsin 43.2372 -88.2413 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Largo, Maryland 38.8800 -76.8289 matched with DB +City: Largo, state: Maryland, Lat: 38.88, Lng: -76.8289, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Largo, Maryland 38.8800 -76.8289 matched with DB +City: Largo, state: Florida, Lat: 27.9088, Lng: -82.7712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Utah 40.1188 -111.5742 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceburg, Kentucky 38.0332 -84.9031 matched with DB +City: Lawrenceburg, state: Kentucky, Lat: 38.0332, Lng: -84.9031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrenceburg, Kentucky 38.0332 -84.9031 matched with DB +City: Lawrenceburg, state: Tennessee, Lat: 35.2497, Lng: -87.3325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Baltimore, Virginia 38.7495 -77.7151 matched with DB +City: New Baltimore, state: Michigan, Lat: 42.6904, Lng: -82.7398, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Baltimore, Virginia 38.7495 -77.7151 matched with DB +City: New Baltimore, state: Virginia, Lat: 38.7495, Lng: -77.7151, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossmoor, California 33.7887 -118.0803 matched with DB +City: Rossmoor, state: California, Lat: 33.7887, Lng: -118.0803, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Alamitos, California 33.7971 -118.0592 matched with DB +City: Los Alamitos, state: California, Lat: 33.7971, Lng: -118.0592, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crowley, Louisiana 30.2175 -92.3752 matched with DB +City: Crowley, state: Louisiana, Lat: 30.2175, Lng: -92.3752, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Crowley, Louisiana 30.2175 -92.3752 matched with DB +City: Crowley, state: Texas, Lat: 32.5781, Lng: -97.3585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shady Hills, Florida 28.4042 -82.5468 matched with DB +City: Shady Hills, state: Florida, Lat: 28.4042, Lng: -82.5468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookhaven, Mississippi 31.5803 -90.4432 matched with DB +City: Brookhaven, state: Mississippi, Lat: 31.5803, Lng: -90.4432, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, Mississippi 31.5803 -90.4432 matched with DB +City: Brookhaven, state: Georgia, Lat: 33.8743, Lng: -84.3314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, Mississippi 31.5803 -90.4432 matched with DB +City: Brookhaven, state: New York, Lat: 40.832, Lng: -72.9517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Delaware 38.9091 -75.4227 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Delaware 38.9091 -75.4227 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Delaware 38.9091 -75.4227 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Delaware 38.9091 -75.4227 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Lake, North Carolina 35.1843 -78.9962 matched with DB +City: Spring Lake, state: North Carolina, Lat: 35.1843, Lng: -78.9962, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lantana, Texas 33.0926 -97.1214 matched with DB +City: Lantana, state: Florida, Lat: 26.5834, Lng: -80.0564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lantana, Texas 33.0926 -97.1214 matched with DB +City: Lantana, state: Texas, Lat: 33.0926, Lng: -97.1214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lantana, Florida 26.5834 -80.0564 matched with DB +City: Lantana, state: Florida, Lat: 26.5834, Lng: -80.0564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lantana, Florida 26.5834 -80.0564 matched with DB +City: Lantana, state: Texas, Lat: 33.0926, Lng: -97.1214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lower Burrell, Pennsylvania 40.5818 -79.7141 matched with DB +City: Lower Burrell, state: Pennsylvania, Lat: 40.5818, Lng: -79.7141, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Georgia 31.5065 -82.8544 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Georgia 31.5065 -82.8544 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Georgia 31.5065 -82.8544 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ringwood, New Jersey 41.1065 -74.2749 matched with DB +City: Ringwood, state: New Jersey, Lat: 41.1065, Lng: -74.2749, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: James Island, South Carolina 32.7353 -79.9394 matched with DB +City: James Island, state: South Carolina, Lat: 32.7353, Lng: -79.9394, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irmo, South Carolina 34.1018 -81.1956 matched with DB +City: Irmo, state: South Carolina, Lat: 34.1018, Lng: -81.1956, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seven Hills, Ohio 41.3803 -81.6736 matched with DB +City: Seven Hills, state: Ohio, Lat: 41.3803, Lng: -81.6736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Signal Hill, California 33.8030 -118.1681 matched with DB +City: Signal Hill, state: California, Lat: 33.803, Lng: -118.1681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellmawr, New Jersey 39.8666 -75.0941 matched with DB +City: Bellmawr, state: New Jersey, Lat: 39.8666, Lng: -75.0941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Ohio 39.5538 -84.2952 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vermillion, South Dakota 42.7811 -96.9256 matched with DB +City: Vermillion, state: South Dakota, Lat: 42.7811, Lng: -96.9256, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dent, Ohio 39.1915 -84.6601 matched with DB +City: Dent, state: Ohio, Lat: 39.1915, Lng: -84.6601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lanham, Maryland 38.9620 -76.8421 matched with DB +City: Lanham, state: Maryland, Lat: 38.962, Lng: -76.8421, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodmere, Louisiana 29.8493 -90.0751 matched with DB +City: Woodmere, state: New York, Lat: 40.6375, Lng: -73.7219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodmere, Louisiana 29.8493 -90.0751 matched with DB +City: Woodmere, state: Louisiana, Lat: 29.8493, Lng: -90.0751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Riviera, California 38.5683 -121.3544 matched with DB +City: La Riviera, state: California, Lat: 38.5683, Lng: -121.3544, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport East, Rhode Island 41.5159 -71.2878 matched with DB +City: Newport East, state: Rhode Island, Lat: 41.5159, Lng: -71.2878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Emmaus, Pennsylvania 40.5352 -75.4978 matched with DB +City: Emmaus, state: Pennsylvania, Lat: 40.5352, Lng: -75.4978, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norton, Ohio 41.0294 -81.6461 matched with DB +City: Norton, state: Ohio, Lat: 41.0294, Lng: -81.6461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norton, Ohio 41.0294 -81.6461 matched with DB +City: Norton, state: Massachusetts, Lat: 41.964, Lng: -71.1842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bucyrus, Ohio 40.8054 -82.9719 matched with DB +City: Bucyrus, state: Ohio, Lat: 40.8054, Lng: -82.9719, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendota Heights, Minnesota 44.8815 -93.1400 matched with DB +City: Mendota Heights, state: Minnesota, Lat: 44.8815, Lng: -93.14, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Sinai, New York 40.9372 -73.0179 matched with DB +City: Mount Sinai, state: New York, Lat: 40.9372, Lng: -73.0179, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami Shores, Florida 25.8670 -80.1779 matched with DB +City: Miami Shores, state: Florida, Lat: 25.867, Lng: -80.1779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Half Moon Bay, California 37.4685 -122.4382 matched with DB +City: Half Moon Bay, state: California, Lat: 37.4685, Lng: -122.4382, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayou Blue, Louisiana 29.6341 -90.6733 matched with DB +City: Bayou Blue, state: Louisiana, Lat: 29.6341, Lng: -90.6733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wakefield, Virginia 38.8230 -77.2406 matched with DB +City: Wakefield, state: Massachusetts, Lat: 42.5035, Lng: -71.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wakefield, Virginia 38.8230 -77.2406 matched with DB +City: Wakefield, state: Virginia, Lat: 38.823, Lng: -77.2406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middle Valley, Tennessee 35.1877 -85.1959 matched with DB +City: Middle Valley, state: Tennessee, Lat: 35.1877, Lng: -85.1959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ontario, Oregon 44.0259 -116.9760 matched with DB +City: Ontario, state: Oregon, Lat: 44.0259, Lng: -116.976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Oregon 44.0259 -116.9760 matched with DB +City: Ontario, state: California, Lat: 34.0393, Lng: -117.6064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Oregon 44.0259 -116.9760 matched with DB +City: Ontario, state: New York, Lat: 43.2408, Lng: -77.314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Schiller Park, Illinois 41.9586 -87.8693 matched with DB +City: Schiller Park, state: Illinois, Lat: 41.9586, Lng: -87.8693, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartsville, Tennessee 36.3921 -86.1568 matched with DB +City: Hartsville, state: Tennessee, Lat: 36.3921, Lng: -86.1568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Markham, Illinois 41.6000 -87.6904 matched with DB +City: Markham, state: Illinois, Lat: 41.6, Lng: -87.6904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceburg, Tennessee 35.2497 -87.3325 matched with DB +City: Lawrenceburg, state: Kentucky, Lat: 38.0332, Lng: -84.9031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrenceburg, Tennessee 35.2497 -87.3325 matched with DB +City: Lawrenceburg, state: Tennessee, Lat: 35.2497, Lng: -87.3325, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roessleville, New York 42.6969 -73.7964 matched with DB +City: Roessleville, state: New York, Lat: 42.6969, Lng: -73.7964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minnehaha, Washington 45.6577 -122.6204 matched with DB +City: Minnehaha, state: Washington, Lat: 45.6577, Lng: -122.6204, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moss Bluff, Louisiana 30.3039 -93.2051 matched with DB +City: Moss Bluff, state: Louisiana, Lat: 30.3039, Lng: -93.2051, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Town and Country, Missouri 38.6317 -90.4790 matched with DB +City: Town and Country, state: Missouri, Lat: 38.6317, Lng: -90.479, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Forest, Illinois 41.8950 -87.8194 matched with DB +City: River Forest, state: Illinois, Lat: 41.895, Lng: -87.8194, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gold Canyon, Arizona 33.3639 -111.4230 matched with DB +City: Gold Canyon, state: Arizona, Lat: 33.3639, Lng: -111.423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardere, Louisiana 30.3582 -91.1346 matched with DB +City: Gardere, state: Louisiana, Lat: 30.3582, Lng: -91.1346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorktown, Indiana 40.1830 -85.5123 matched with DB +City: Yorktown, state: Indiana, Lat: 40.183, Lng: -85.5123, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Yorktown, Indiana 40.1830 -85.5123 matched with DB +City: Yorktown, state: New York, Lat: 41.2727, Lng: -73.8092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest, Virginia 37.3728 -79.2831 matched with DB +City: Forest, state: Virginia, Lat: 37.3728, Lng: -79.2831, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stuarts Draft, Virginia 38.0188 -79.0354 matched with DB +City: Stuarts Draft, state: Virginia, Lat: 38.0188, Lng: -79.0354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sussex, Wisconsin 43.1346 -88.2226 matched with DB +City: Sussex, state: Wisconsin, Lat: 43.1346, Lng: -88.2226, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Lavaca, Texas 28.6181 -96.6278 matched with DB +City: Port Lavaca, state: Texas, Lat: 28.6181, Lng: -96.6278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Platteville, Wisconsin 42.7280 -90.4681 matched with DB +City: Platteville, state: Wisconsin, Lat: 42.728, Lng: -90.4681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roma, Texas 26.4166 -99.0061 matched with DB +City: Roma, state: Texas, Lat: 26.4166, Lng: -99.0061, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, North Carolina 35.5133 -78.3495 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, North Carolina 35.5133 -78.3495 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, North Carolina 35.5133 -78.3495 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, North Carolina 35.5133 -78.3495 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grosse Pointe Park, Michigan 42.3794 -82.9287 matched with DB +City: Grosse Pointe Park, state: Michigan, Lat: 42.3794, Lng: -82.9287, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, Oklahoma 35.2401 -97.5995 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, Oklahoma 35.2401 -97.5995 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burley, Idaho 42.5379 -113.7926 matched with DB +City: Burley, state: Idaho, Lat: 42.5379, Lng: -113.7926, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Four Corners, Texas 29.6705 -95.6596 matched with DB +City: Four Corners, state: Texas, Lat: 29.6705, Lng: -95.6596, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Four Corners, Texas 29.6705 -95.6596 matched with DB +City: Four Corners, state: Oregon, Lat: 44.929, Lng: -122.9732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mexico, Missouri 39.1625 -91.8712 matched with DB +City: Mexico, state: Missouri, Lat: 39.1625, Lng: -91.8712, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Morgan, Colorado 40.2537 -103.7903 matched with DB +City: Fort Morgan, state: Colorado, Lat: 40.2537, Lng: -103.7903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lovington, New Mexico 32.9128 -103.3276 matched with DB +City: Lovington, state: New Mexico, Lat: 32.9128, Lng: -103.3276, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk City, Oklahoma 35.3862 -99.4301 matched with DB +City: Elk City, state: Oklahoma, Lat: 35.3862, Lng: -99.4301, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oskaloosa, Iowa 41.2922 -92.6404 matched with DB +City: Oskaloosa, state: Iowa, Lat: 41.2922, Lng: -92.6404, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Michigan 42.4614 -83.3784 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Michigan 42.4614 -83.3784 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Michigan 42.4614 -83.3784 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Michigan 42.4614 -83.3784 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Michigan 42.4614 -83.3784 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Michigan 42.4614 -83.3784 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgefield, Washington 45.8114 -122.7051 matched with DB +City: Ridgefield, state: New Jersey, Lat: 40.8313, Lng: -74.0147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ridgefield, Washington 45.8114 -122.7051 matched with DB +City: Ridgefield, state: Washington, Lat: 45.8114, Lng: -122.7051, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leon Valley, Texas 29.4954 -98.6143 matched with DB +City: Leon Valley, state: Texas, Lat: 29.4954, Lng: -98.6143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Healdsburg, California 38.6224 -122.8651 matched with DB +City: Healdsburg, state: California, Lat: 38.6224, Lng: -122.8651, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindon, Utah 40.3414 -111.7187 matched with DB +City: Lindon, state: Utah, Lat: 40.3414, Lng: -111.7187, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Glenville, New York 42.8648 -73.9256 matched with DB +City: East Glenville, state: New York, Lat: 42.8648, Lng: -73.9256, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Village, California 34.5596 -117.9558 matched with DB +City: Sun Village, state: California, Lat: 34.5596, Lng: -117.9558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgefield, New Jersey 40.8313 -74.0147 matched with DB +City: Ridgefield, state: New Jersey, Lat: 40.8313, Lng: -74.0147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ridgefield, New Jersey 40.8313 -74.0147 matched with DB +City: Ridgefield, state: Washington, Lat: 45.8114, Lng: -122.7051, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fuller Heights, Florida 27.9227 -81.9978 matched with DB +City: Fuller Heights, state: Florida, Lat: 27.9227, Lng: -81.9978, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pike Creek Valley, Delaware 39.7294 -75.6989 matched with DB +City: Pike Creek Valley, state: Delaware, Lat: 39.7294, Lng: -75.6989, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton Manors, Florida 26.1593 -80.1395 matched with DB +City: Wilton Manors, state: Florida, Lat: 26.1593, Lng: -80.1395, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pontiac, Illinois 40.8894 -88.6409 matched with DB +City: Pontiac, state: Michigan, Lat: 42.6493, Lng: -83.2878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pontiac, Illinois 40.8894 -88.6409 matched with DB +City: Pontiac, state: Illinois, Lat: 40.8894, Lng: -88.6409, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Wantagh, New York 40.6983 -73.5086 matched with DB +City: North Wantagh, state: New York, Lat: 40.6983, Lng: -73.5086, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Louisiana 30.4810 -90.1122 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Louisiana 30.4810 -90.1122 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Louisiana 30.4810 -90.1122 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Louisiana 30.4810 -90.1122 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Louisiana 30.4810 -90.1122 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University of California-Santa Barbara, California 34.4151 -119.8568 matched with DB +City: University of California-Santa Barbara, state: California, Lat: 34.4151, Lng: -119.8568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Salerno, Florida 27.1461 -80.1894 matched with DB +City: Port Salerno, state: Florida, Lat: 27.1461, Lng: -80.1894, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gloucester City, New Jersey 39.8924 -75.1172 matched with DB +City: Gloucester City, state: New Jersey, Lat: 39.8924, Lng: -75.1172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbellsville, Kentucky 37.3445 -85.3511 matched with DB +City: Campbellsville, state: Kentucky, Lat: 37.3445, Lng: -85.3511, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woods Cross, Utah 40.8731 -111.9170 matched with DB +City: Woods Cross, state: Utah, Lat: 40.8731, Lng: -111.917, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dobbs Ferry, New York 41.0127 -73.8697 matched with DB +City: Dobbs Ferry, state: New York, Lat: 41.0127, Lng: -73.8697, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensburg, Indiana 39.3518 -85.5028 matched with DB +City: Greensburg, state: Pennsylvania, Lat: 40.3113, Lng: -79.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greensburg, Indiana 39.3518 -85.5028 matched with DB +City: Greensburg, state: Indiana, Lat: 39.3518, Lng: -85.5028, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeton, Missouri 38.7673 -90.4275 matched with DB +City: Bridgeton, state: Missouri, Lat: 38.7673, Lng: -90.4275, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeton, Missouri 38.7673 -90.4275 matched with DB +City: Bridgeton, state: New Jersey, Lat: 39.4286, Lng: -75.2281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clawson, Michigan 42.5367 -83.1504 matched with DB +City: Clawson, state: Michigan, Lat: 42.5367, Lng: -83.1504, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, South Carolina 33.9780 -81.1468 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, South Carolina 33.9780 -81.1468 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, South Carolina 33.9780 -81.1468 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Grand Rapids, Michigan 42.9464 -85.6088 matched with DB +City: East Grand Rapids, state: Michigan, Lat: 42.9464, Lng: -85.6088, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, New York 43.3171 -76.4167 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, New York 43.3171 -76.4167 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snyder, Texas 32.7133 -100.9116 matched with DB +City: Snyder, state: Texas, Lat: 32.7133, Lng: -100.9116, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clara, Oregon 44.1154 -123.1344 matched with DB +City: Santa Clara, state: California, Lat: 37.3646, Lng: -121.968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Clara, Oregon 44.1154 -123.1344 matched with DB +City: Santa Clara, state: Oregon, Lat: 44.1154, Lng: -123.1344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Suffern, New York 41.1138 -74.1422 matched with DB +City: Suffern, state: New York, Lat: 41.1138, Lng: -74.1422, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgan City, Louisiana 29.7041 -91.1920 matched with DB +City: Morgan City, state: Louisiana, Lat: 29.7041, Lng: -91.192, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, New York 41.3284 -74.1004 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New York 41.3284 -74.1004 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New York 41.3284 -74.1004 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New York 41.3284 -74.1004 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Okmulgee, Oklahoma 35.6134 -96.0068 matched with DB +City: Okmulgee, state: Oklahoma, Lat: 35.6134, Lng: -96.0068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Progress, Pennsylvania 40.2901 -76.8394 matched with DB +City: Progress, state: Pennsylvania, Lat: 40.2901, Lng: -76.8394, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medulla, Florida 27.9570 -81.9866 matched with DB +City: Medulla, state: Florida, Lat: 27.957, Lng: -81.9866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Iowa 43.1468 -95.1534 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Iowa 43.1468 -95.1534 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maltby, Washington 47.8027 -122.1044 matched with DB +City: Maltby, state: Washington, Lat: 47.8027, Lng: -122.1044, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cocoa Beach, Florida 28.3327 -80.6274 matched with DB +City: Cocoa Beach, state: Florida, Lat: 28.3327, Lng: -80.6274, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ravenna, Ohio 41.1612 -81.2422 matched with DB +City: Ravenna, state: Ohio, Lat: 41.1612, Lng: -81.2422, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorville, Illinois 39.5328 -89.2804 matched with DB +City: Taylorville, state: Illinois, Lat: 39.5328, Lng: -89.2804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Pennsylvania 39.9732 -76.7920 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Pennsylvania 39.9732 -76.7920 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Pennsylvania 39.9732 -76.7920 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland Highlands, Florida 27.9572 -81.9496 matched with DB +City: Lakeland Highlands, state: Florida, Lat: 27.9572, Lng: -81.9496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, California 40.4497 -122.2950 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, California 40.4497 -122.2950 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, California 40.4497 -122.2950 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowes Island, Virginia 39.0471 -77.3524 matched with DB +City: Lowes Island, state: Virginia, Lat: 39.0471, Lng: -77.3524, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manvel, Texas 29.4798 -95.3635 matched with DB +City: Manvel, state: Texas, Lat: 29.4798, Lng: -95.3635, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: De Witt, New York 43.0300 -76.0819 matched with DB +City: De Witt, state: New York, Lat: 43.0501, Lng: -76.071, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: De Witt, New York 43.0300 -76.0819 matched with DB +City: De Witt, state: New York, Lat: 43.03, Lng: -76.0819, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westphalia, Maryland 38.8356 -76.8298 matched with DB +City: Westphalia, state: Maryland, Lat: 38.8356, Lng: -76.8298, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean City, New Jersey 39.2681 -74.6020 matched with DB +City: Ocean City, state: New Jersey, Lat: 39.2681, Lng: -74.602, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, Ohio 41.4349 -81.7497 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, Ohio 41.4349 -81.7497 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsborough, California 37.5572 -122.3586 matched with DB +City: Hillsborough, state: North Carolina, Lat: 36.0679, Lng: -79.0991, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, California 37.5572 -122.3586 matched with DB +City: Hillsborough, state: California, Lat: 37.5572, Lng: -122.3586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, California 37.5572 -122.3586 matched with DB +City: Hillsborough, state: New Jersey, Lat: 40.4985, Lng: -74.674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, California 37.5572 -122.3586 matched with DB +City: Hillsborough, state: New Jersey, Lat: 40.5069, Lng: -74.6523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Valley, New Mexico 35.1736 -106.6231 matched with DB +City: North Valley, state: New Mexico, Lat: 35.1736, Lng: -106.6231, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, Kansas 39.2428 -94.8972 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Kansas 39.2428 -94.8972 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Kansas 39.2428 -94.8972 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Kansas 39.2428 -94.8972 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Two Rivers, Wisconsin 44.1565 -87.5824 matched with DB +City: Two Rivers, state: Wisconsin, Lat: 44.1565, Lng: -87.5824, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kings Mountain, North Carolina 35.2349 -81.3501 matched with DB +City: Kings Mountain, state: North Carolina, Lat: 35.2349, Lng: -81.3501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barrington, Illinois 42.1515 -88.1281 matched with DB +City: Barrington, state: Illinois, Lat: 42.1515, Lng: -88.1281, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Barrington, Illinois 42.1515 -88.1281 matched with DB +City: Barrington, state: New Hampshire, Lat: 43.2139, Lng: -71.0424, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Barrington, Illinois 42.1515 -88.1281 matched with DB +City: Barrington, state: Rhode Island, Lat: 41.7443, Lng: -71.3145, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, New Jersey 40.9878 -74.0308 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, New Jersey 40.9878 -74.0308 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, New Jersey 40.9878 -74.0308 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oregon, Wisconsin 42.9253 -89.3892 matched with DB +City: Oregon, state: Ohio, Lat: 41.6524, Lng: -83.4321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oregon, Wisconsin 42.9253 -89.3892 matched with DB +City: Oregon, state: Wisconsin, Lat: 42.9253, Lng: -89.3892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Utah 41.1220 -112.0995 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Utah 41.1220 -112.0995 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincolnton, North Carolina 35.4748 -81.2386 matched with DB +City: Lincolnton, state: North Carolina, Lat: 35.4748, Lng: -81.2386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granbury, Texas 32.4475 -97.7702 matched with DB +City: Granbury, state: Texas, Lat: 32.4475, Lng: -97.7702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wanaque, New Jersey 41.0440 -74.2900 matched with DB +City: Wanaque, state: New Jersey, Lat: 41.044, Lng: -74.29, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abbeville, Louisiana 29.9751 -92.1265 matched with DB +City: Abbeville, state: Louisiana, Lat: 29.9751, Lng: -92.1265, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northbrook, Ohio 39.2467 -84.5796 matched with DB +City: Northbrook, state: Illinois, Lat: 42.1292, Lng: -87.8352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Northbrook, Ohio 39.2467 -84.5796 matched with DB +City: Northbrook, state: Ohio, Lat: 39.2467, Lng: -84.5796, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Storm Lake, Iowa 42.6431 -95.1960 matched with DB +City: Storm Lake, state: Iowa, Lat: 42.6431, Lng: -95.196, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boiling Springs, South Carolina 35.0450 -81.9779 matched with DB +City: Boiling Springs, state: South Carolina, Lat: 35.045, Lng: -81.9779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berkley, Colorado 39.8045 -105.0281 matched with DB +City: Berkley, state: Michigan, Lat: 42.4986, Lng: -83.1853, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berkley, Colorado 39.8045 -105.0281 matched with DB +City: Berkley, state: Colorado, Lat: 39.8045, Lng: -105.0281, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Satellite Beach, Florida 28.1782 -80.6019 matched with DB +City: Satellite Beach, state: Florida, Lat: 28.1782, Lng: -80.6019, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tucson Mountains, Arizona 32.2822 -111.0773 matched with DB +City: Tucson Mountains, state: Arizona, Lat: 32.2822, Lng: -111.0773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Port Richey East, Florida 28.2605 -82.6931 matched with DB +City: New Port Richey East, state: Florida, Lat: 28.2605, Lng: -82.6931, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Colorado 40.7000 -105.0054 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Colorado 40.7000 -105.0054 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batesville, Arkansas 35.7687 -91.6227 matched with DB +City: Batesville, state: Arkansas, Lat: 35.7687, Lng: -91.6227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, California 37.8225 -122.2301 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elon, North Carolina 36.1016 -79.5086 matched with DB +City: Elon, state: North Carolina, Lat: 36.1016, Lng: -79.5086, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Rapids, Minnesota 47.2380 -93.5327 matched with DB +City: Grand Rapids, state: Michigan, Lat: 42.9619, Lng: -85.6562, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grand Rapids, Minnesota 47.2380 -93.5327 matched with DB +City: Grand Rapids, state: Minnesota, Lat: 47.238, Lng: -93.5327, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cherry Creek, Colorado 39.6094 -104.8645 matched with DB +City: Cherry Creek, state: Colorado, Lat: 39.6094, Lng: -104.8645, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Ohio 40.1085 -83.7541 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Ohio 40.1085 -83.7541 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Ohio 40.1085 -83.7541 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inwood, New York 40.6219 -73.7506 matched with DB +City: Inwood, state: New York, Lat: 40.6219, Lng: -73.7506, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Lindenhurst, New York 40.7072 -73.3859 matched with DB +City: North Lindenhurst, state: New York, Lat: 40.7072, Lng: -73.3859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sierra Madre, California 34.1687 -118.0504 matched with DB +City: Sierra Madre, state: California, Lat: 34.1687, Lng: -118.0504, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Birch Bay, Washington 48.9243 -122.7519 matched with DB +City: Birch Bay, state: Washington, Lat: 48.9243, Lng: -122.7519, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waipio, Hawaii 21.4143 -157.9966 matched with DB +City: Waipio, state: Hawaii, Lat: 21.4143, Lng: -157.9966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Illinois 42.4256 -89.0084 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burr Ridge, Illinois 41.7485 -87.9200 matched with DB +City: Burr Ridge, state: Illinois, Lat: 41.7485, Lng: -87.92, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, New York 40.8462 -73.3389 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White City, Oregon 42.4316 -122.8322 matched with DB +City: White City, state: Oregon, Lat: 42.4316, Lng: -122.8322, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plano, Illinois 41.6757 -88.5293 matched with DB +City: Plano, state: Illinois, Lat: 41.6757, Lng: -88.5293, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plano, Illinois 41.6757 -88.5293 matched with DB +City: Plano, state: Texas, Lat: 33.0502, Lng: -96.7486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waupun, Wisconsin 43.6314 -88.7381 matched with DB +City: Waupun, state: Wisconsin, Lat: 43.6314, Lng: -88.7381, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canyon Lake, California 33.6885 -117.2621 matched with DB +City: Canyon Lake, state: Texas, Lat: 29.8761, Lng: -98.2611, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canyon Lake, California 33.6885 -117.2621 matched with DB +City: Canyon Lake, state: California, Lat: 33.6885, Lng: -117.2621, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Wentworth, Georgia 32.1951 -81.1991 matched with DB +City: Port Wentworth, state: Georgia, Lat: 32.1951, Lng: -81.1991, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alcoa, Tennessee 35.8076 -83.9753 matched with DB +City: Alcoa, state: Tennessee, Lat: 35.8076, Lng: -83.9753, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raceland, Louisiana 29.7282 -90.6362 matched with DB +City: Raceland, state: Louisiana, Lat: 29.7282, Lng: -90.6362, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Mississippi 33.7440 -90.7285 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Mississippi 33.7440 -90.7285 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Mississippi 33.7440 -90.7285 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Citrus Springs, Florida 28.9931 -82.4594 matched with DB +City: Citrus Springs, state: Florida, Lat: 28.9931, Lng: -82.4594, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, California 37.9404 -121.9301 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, California 37.9404 -121.9301 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, California 37.9404 -121.9301 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, California 37.9404 -121.9301 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, California 37.9404 -121.9301 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merriam, Kansas 39.0186 -94.6933 matched with DB +City: Merriam, state: Kansas, Lat: 39.0186, Lng: -94.6933, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Tennessee 36.4267 -89.0474 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Tennessee 36.4267 -89.0474 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Tennessee 36.4267 -89.0474 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Tennessee 36.4267 -89.0474 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, Texas 29.5866 -98.3132 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Texas 29.5866 -98.3132 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Texas 29.5866 -98.3132 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyomissing, Pennsylvania 40.3317 -75.9703 matched with DB +City: Wyomissing, state: Pennsylvania, Lat: 40.3317, Lng: -75.9703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Grove, New York 40.8586 -73.1168 matched with DB +City: Lake Grove, state: New York, Lat: 40.8586, Lng: -73.1168, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marinette, Wisconsin 45.0871 -87.6336 matched with DB +City: Marinette, state: Wisconsin, Lat: 45.0871, Lng: -87.6336, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Neck, New York 40.8029 -73.7333 matched with DB +City: Great Neck, state: New York, Lat: 40.8029, Lng: -73.7333, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coshocton, Ohio 40.2618 -81.8480 matched with DB +City: Coshocton, state: Ohio, Lat: 40.2618, Lng: -81.848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monmouth, Oregon 44.8505 -123.2284 matched with DB +City: Monmouth, state: Illinois, Lat: 40.914, Lng: -90.6425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monmouth, Oregon 44.8505 -123.2284 matched with DB +City: Monmouth, state: Oregon, Lat: 44.8505, Lng: -123.2284, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pompton Lakes, New Jersey 41.0024 -74.2859 matched with DB +City: Pompton Lakes, state: New Jersey, Lat: 41.0024, Lng: -74.2859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansdowne, Pennsylvania 39.9408 -75.2760 matched with DB +City: Lansdowne, state: Pennsylvania, Lat: 39.9408, Lng: -75.276, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansdowne, Pennsylvania 39.9408 -75.2760 matched with DB +City: Lansdowne, state: Maryland, Lat: 39.2365, Lng: -76.6659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansdowne, Pennsylvania 39.9408 -75.2760 matched with DB +City: Lansdowne, state: Virginia, Lat: 39.0844, Lng: -77.4839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sturgis, Michigan 41.7991 -85.4184 matched with DB +City: Sturgis, state: Michigan, Lat: 41.7991, Lng: -85.4184, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petal, Mississippi 31.3477 -89.2359 matched with DB +City: Petal, state: Mississippi, Lat: 31.3477, Lng: -89.2359, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Arkansas 33.2775 -93.2261 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bithlo, Florida 28.5644 -81.1073 matched with DB +City: Bithlo, state: Florida, Lat: 28.5644, Lng: -81.1073, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Illinois 38.4581 -90.2156 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Illinois 38.4581 -90.2156 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Illinois 38.4581 -90.2156 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Illinois 38.4581 -90.2156 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Illinois 38.4581 -90.2156 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Illinois 38.4581 -90.2156 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Illinois 41.7877 -87.8146 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Illinois 41.7877 -87.8146 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Illinois 41.7877 -87.8146 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hornsby Bend, Texas 30.2388 -97.5899 matched with DB +City: Hornsby Bend, state: Texas, Lat: 30.2388, Lng: -97.5899, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waihee-Waiehu, Hawaii 20.9188 -156.5063 matched with DB +City: Waihee-Waiehu, state: Hawaii, Lat: 20.9188, Lng: -156.5063, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cold Springs, Nevada 39.6927 -119.9775 matched with DB +City: Cold Springs, state: Nevada, Lat: 39.6927, Lng: -119.9775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Texas 30.2660 -98.8751 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Texas 30.2660 -98.8751 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greentree, New Jersey 39.8989 -74.9613 matched with DB +City: Greentree, state: New Jersey, Lat: 39.8989, Lng: -74.9613, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gloucester Point, Virginia 37.2767 -76.5043 matched with DB +City: Gloucester Point, state: Virginia, Lat: 37.2767, Lng: -76.5043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Illinois 38.3403 -90.1538 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Illinois 38.3403 -90.1538 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview Shores, Florida 28.6021 -81.3958 matched with DB +City: Fairview Shores, state: Florida, Lat: 28.6021, Lng: -81.3958, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesboro, Pennsylvania 39.7524 -77.5822 matched with DB +City: Waynesboro, state: Pennsylvania, Lat: 39.7524, Lng: -77.5822, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waynesboro, Pennsylvania 39.7524 -77.5822 matched with DB +City: Waynesboro, state: Virginia, Lat: 38.0674, Lng: -78.9014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Lakes, New Jersey 41.0086 -74.2083 matched with DB +City: Franklin Lakes, state: New Jersey, Lat: 41.0086, Lng: -74.2083, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sebring, Florida 27.4770 -81.4530 matched with DB +City: Sebring, state: Florida, Lat: 27.477, Lng: -81.453, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collegedale, Tennessee 35.0526 -85.0488 matched with DB +City: Collegedale, state: Tennessee, Lat: 35.0526, Lng: -85.0488, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wisconsin 42.6744 -88.2721 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyndon, Kentucky 38.2645 -85.5891 matched with DB +City: Lyndon, state: Kentucky, Lat: 38.2645, Lng: -85.5891, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, New Jersey 41.0323 -74.4971 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, New Jersey 41.0323 -74.4971 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, New Jersey 41.0323 -74.4971 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westview, Florida 25.8825 -80.2415 matched with DB +City: Westview, state: Florida, Lat: 25.8825, Lng: -80.2415, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Ohio 39.2909 -84.4760 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Ohio 39.2909 -84.4760 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Ohio 39.2909 -84.4760 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerfield, North Carolina 36.1973 -79.8997 matched with DB +City: Summerfield, state: North Carolina, Lat: 36.1973, Lng: -79.8997, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summerfield, North Carolina 36.1973 -79.8997 matched with DB +City: Summerfield, state: Maryland, Lat: 38.9042, Lng: -76.8678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Logan, Utah 41.7759 -111.8066 matched with DB +City: North Logan, state: Utah, Lat: 41.7759, Lng: -111.8066, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burkburnett, Texas 34.0746 -98.5672 matched with DB +City: Burkburnett, state: Texas, Lat: 34.0746, Lng: -98.5672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Citrus, California 34.1160 -117.8891 matched with DB +City: Citrus, state: California, Lat: 34.116, Lng: -117.8891, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pebble Creek, Florida 28.1583 -82.3411 matched with DB +City: Pebble Creek, state: Florida, Lat: 28.1583, Lng: -82.3411, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Totowa, New Jersey 40.9039 -74.2214 matched with DB +City: Totowa, state: New Jersey, Lat: 40.9039, Lng: -74.2214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Celina, Ohio 40.5550 -84.5626 matched with DB +City: Celina, state: Ohio, Lat: 40.555, Lng: -84.5626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Celina, Ohio 40.5550 -84.5626 matched with DB +City: Celina, state: Texas, Lat: 33.3154, Lng: -96.7941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Branch, Minnesota 45.5137 -92.9601 matched with DB +City: North Branch, state: Minnesota, Lat: 45.5137, Lng: -92.9601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Haven, Michigan 43.0553 -86.2201 matched with DB +City: Grand Haven, state: Michigan, Lat: 43.0553, Lng: -86.2201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Ferry, New Jersey 40.8464 -74.0388 matched with DB +City: Little Ferry, state: New Jersey, Lat: 40.8464, Lng: -74.0388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Mississippi 32.5975 -90.0317 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Mississippi 32.5975 -90.0317 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Mississippi 32.5975 -90.0317 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Mississippi 32.5975 -90.0317 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Mississippi 32.5975 -90.0317 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Mississippi 32.5975 -90.0317 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant View, Utah 41.3249 -112.0011 matched with DB +City: Pleasant View, state: Utah, Lat: 41.3249, Lng: -112.0011, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pompton Plains, New Jersey 40.9679 -74.3075 matched with DB +City: Pompton Plains, state: New Jersey, Lat: 40.9679, Lng: -74.3075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belgrade, Montana 45.7789 -111.1736 matched with DB +City: Belgrade, state: Montana, Lat: 45.7789, Lng: -111.1736, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vashon, Washington 47.4122 -122.4726 matched with DB +City: Vashon, state: Washington, Lat: 47.4122, Lng: -122.4726, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Hills, New Jersey 40.6561 -74.6215 matched with DB +City: The Hills, state: New Jersey, Lat: 40.6561, Lng: -74.6215, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beachwood, New Jersey 39.9286 -74.2022 matched with DB +City: Beachwood, state: New Jersey, Lat: 39.9286, Lng: -74.2022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beachwood, New Jersey 39.9286 -74.2022 matched with DB +City: Beachwood, state: Ohio, Lat: 41.4759, Lng: -81.503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford Heights, Ohio 41.4041 -81.5053 matched with DB +City: Bedford Heights, state: Ohio, Lat: 41.4041, Lng: -81.5053, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Center, California 33.2330 -117.0158 matched with DB +City: Valley Center, state: California, Lat: 33.233, Lng: -117.0158, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Florida 27.5435 -82.5608 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Florida 27.5435 -82.5608 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Washington 46.2443 -119.9092 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Washington 46.2443 -119.9092 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Illinois 38.7268 -89.8977 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Illinois 38.7268 -89.8977 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Illinois 38.7268 -89.8977 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Illinois 38.7268 -89.8977 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Illinois 38.7268 -89.8977 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Illinois 38.7268 -89.8977 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, South Dakota 43.5928 -96.5799 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, South Dakota 43.5928 -96.5799 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, South Dakota 43.5928 -96.5799 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prineville, Oregon 44.2985 -120.8607 matched with DB +City: Prineville, state: Oregon, Lat: 44.2985, Lng: -120.8607, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timberlane, Louisiana 29.8781 -90.0303 matched with DB +City: Timberlane, state: Louisiana, Lat: 29.8781, Lng: -90.0303, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rincon, Georgia 32.2947 -81.2353 matched with DB +City: Rincon, state: Georgia, Lat: 32.2947, Lng: -81.2353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gages Lake, Illinois 42.3519 -87.9828 matched with DB +City: Gages Lake, state: Illinois, Lat: 42.3519, Lng: -87.9828, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delhi, California 37.4306 -120.7759 matched with DB +City: Delhi, state: California, Lat: 37.4306, Lng: -120.7759, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manville, New Jersey 40.5420 -74.5892 matched with DB +City: Manville, state: New Jersey, Lat: 40.542, Lng: -74.5892, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berthoud, Colorado 40.3071 -105.0426 matched with DB +City: Berthoud, state: Colorado, Lat: 40.3071, Lng: -105.0426, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haysville, Kansas 37.5648 -97.3527 matched with DB +City: Haysville, state: Kansas, Lat: 37.5648, Lng: -97.3527, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terryville, New York 40.9093 -73.0486 matched with DB +City: Terryville, state: New York, Lat: 40.9093, Lng: -73.0486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fife, Washington 47.2329 -122.3518 matched with DB +City: Fife, state: Washington, Lat: 47.2329, Lng: -122.3518, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Triangle, Virginia 38.5483 -77.3195 matched with DB +City: Triangle, state: Virginia, Lat: 38.5483, Lng: -77.3195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, South Carolina 33.5926 -79.0071 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Carolina 33.5926 -79.0071 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Carolina 33.5926 -79.0071 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Carolina 33.5926 -79.0071 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Carolina 33.5926 -79.0071 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Carolina 33.5926 -79.0071 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Park, New Jersey 40.9239 -74.3035 matched with DB +City: Lincoln Park, state: New Jersey, Lat: 40.9239, Lng: -74.3035, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln Park, New Jersey 40.9239 -74.3035 matched with DB +City: Lincoln Park, state: Michigan, Lat: 42.2432, Lng: -83.1811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guthrie, Oklahoma 35.8424 -97.4366 matched with DB +City: Guthrie, state: Oklahoma, Lat: 35.8424, Lng: -97.4366, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peru, Indiana 40.7593 -86.0756 matched with DB +City: Peru, state: Illinois, Lat: 41.3482, Lng: -89.1371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peru, Indiana 40.7593 -86.0756 matched with DB +City: Peru, state: Indiana, Lat: 40.7593, Lng: -86.0756, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malvern, Arkansas 34.3734 -92.8205 matched with DB +City: Malvern, state: Arkansas, Lat: 34.3734, Lng: -92.8205, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worth, Illinois 41.6877 -87.7916 matched with DB +City: Worth, state: Illinois, Lat: 41.6877, Lng: -87.7916, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kapaa, Hawaii 22.0910 -159.3521 matched with DB +City: Kapaa, state: Hawaii, Lat: 22.091, Lng: -159.3521, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Travilah, Maryland 39.0570 -77.2470 matched with DB +City: Travilah, state: Maryland, Lat: 39.057, Lng: -77.247, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Indiana 39.7584 -86.5019 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Indiana 39.7584 -86.5019 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Indiana 39.7584 -86.5019 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Indiana 39.7584 -86.5019 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Indiana 39.7584 -86.5019 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Kisco, New York 41.2016 -73.7281 matched with DB +City: Mount Kisco, state: New York, Lat: 41.2016, Lng: -73.7281, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Monticello, Virginia 37.9210 -78.3295 matched with DB +City: Lake Monticello, state: Virginia, Lat: 37.921, Lng: -78.3295, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atchison, Kansas 39.5625 -95.1367 matched with DB +City: Atchison, state: Kansas, Lat: 39.5625, Lng: -95.1367, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Van Wert, Ohio 40.8651 -84.5879 matched with DB +City: Van Wert, state: Ohio, Lat: 40.8651, Lng: -84.5879, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, Tennessee 36.3385 -88.8513 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugarmill Woods, Florida 28.7299 -82.5010 matched with DB +City: Sugarmill Woods, state: Florida, Lat: 28.7299, Lng: -82.501, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Florida 28.3595 -82.6894 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Florida 28.3595 -82.6894 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Florida 28.3595 -82.6894 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Florida 28.3595 -82.6894 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Florida 28.3595 -82.6894 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union Park, Florida 28.5657 -81.2355 matched with DB +City: Union Park, state: Florida, Lat: 28.5657, Lng: -81.2355, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Ohio 39.2496 -84.3458 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Ohio 39.2496 -84.3458 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Ohio 39.2496 -84.3458 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Ohio 39.2496 -84.3458 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Ohio 39.2496 -84.3458 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Ohio 39.2496 -84.3458 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holmen, Wisconsin 43.9706 -91.2654 matched with DB +City: Holmen, state: Wisconsin, Lat: 43.9706, Lng: -91.2654, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fox Lake, Illinois 42.4239 -88.1844 matched with DB +City: Fox Lake, state: Illinois, Lat: 42.4239, Lng: -88.1844, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scaggsville, Maryland 39.1416 -76.8843 matched with DB +City: Scaggsville, state: Maryland, Lat: 39.1416, Lng: -76.8843, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timonium, Maryland 39.4459 -76.6032 matched with DB +City: Timonium, state: Maryland, Lat: 39.4459, Lng: -76.6032, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belle Chasse, Louisiana 29.8558 -90.0045 matched with DB +City: Belle Chasse, state: Louisiana, Lat: 29.8558, Lng: -90.0045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolivar, Missouri 37.6059 -93.4175 matched with DB +City: Bolivar, state: Missouri, Lat: 37.6059, Lng: -93.4175, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DeForest, Wisconsin 43.2301 -89.3431 matched with DB +City: DeForest, state: Wisconsin, Lat: 43.2301, Lng: -89.3431, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Alabama 34.5055 -87.7283 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Alabama 34.5055 -87.7283 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morro Bay, California 35.3682 -120.8482 matched with DB +City: Morro Bay, state: California, Lat: 35.3682, Lng: -120.8482, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Del Aire, California 33.9167 -118.3693 matched with DB +City: Del Aire, state: California, Lat: 33.9167, Lng: -118.3693, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Bakersfield, California 35.3832 -118.9743 matched with DB +City: East Bakersfield, state: California, Lat: 35.3832, Lng: -118.9743, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Albans, West Virginia 38.3769 -81.8198 matched with DB +City: St. Albans, state: West Virginia, Lat: 38.3769, Lng: -81.8198, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wyoming 43.4720 -110.7746 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Placerville, California 38.7308 -120.7979 matched with DB +City: Placerville, state: California, Lat: 38.7308, Lng: -120.7979, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Munhall, Pennsylvania 40.3935 -79.9005 matched with DB +City: Munhall, state: Pennsylvania, Lat: 40.3935, Lng: -79.9005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Texas 28.9453 -95.3601 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Texas 28.9453 -95.3601 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Texas 28.9453 -95.3601 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Texas 28.9453 -95.3601 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestwood, Illinois 41.6454 -87.7397 matched with DB +City: Crestwood, state: Missouri, Lat: 38.5569, Lng: -90.3783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Crestwood, Illinois 41.6454 -87.7397 matched with DB +City: Crestwood, state: Illinois, Lat: 41.6454, Lng: -87.7397, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Wyoming 43.0421 -108.4144 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Wyoming 43.0421 -108.4144 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vidalia, Georgia 32.2125 -82.4019 matched with DB +City: Vidalia, state: Georgia, Lat: 32.2125, Lng: -82.4019, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middle Island, New York 40.8857 -72.9454 matched with DB +City: Middle Island, state: New York, Lat: 40.8857, Lng: -72.9454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linthicum, Maryland 39.2088 -76.6626 matched with DB +City: Linthicum, state: Maryland, Lat: 39.2088, Lng: -76.6626, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood Lakes, Florida 25.7237 -80.3717 matched with DB +City: Westwood Lakes, state: Florida, Lat: 25.7237, Lng: -80.3717, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, Ohio 39.0711 -84.3389 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, Ohio 39.0711 -84.3389 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Indiana 41.2917 -87.4195 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Indiana 41.2917 -87.4195 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Indiana 41.2917 -87.4195 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edwards, Colorado 39.6215 -106.6184 matched with DB +City: Edwards, state: Colorado, Lat: 39.6215, Lng: -106.6184, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond Heights, Ohio 41.5589 -81.5029 matched with DB +City: Richmond Heights, state: Ohio, Lat: 41.5589, Lng: -81.5029, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond Heights, Ohio 41.5589 -81.5029 matched with DB +City: Richmond Heights, state: Missouri, Lat: 38.6309, Lng: -90.3332, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond Heights, Ohio 41.5589 -81.5029 matched with DB +City: Richmond Heights, state: Florida, Lat: 25.6347, Lng: -80.3721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasanton, Texas 28.9642 -98.4957 matched with DB +City: Pleasanton, state: California, Lat: 37.6663, Lng: -121.8805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasanton, Texas 28.9642 -98.4957 matched with DB +City: Pleasanton, state: Texas, Lat: 28.9642, Lng: -98.4957, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waggaman, Louisiana 29.9373 -90.2354 matched with DB +City: Waggaman, state: Louisiana, Lat: 29.9373, Lng: -90.2354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sonoma, California 38.2902 -122.4598 matched with DB +City: Sonoma, state: California, Lat: 38.2902, Lng: -122.4598, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malibu, California 34.0370 -118.7839 matched with DB +City: Malibu, state: California, Lat: 34.037, Lng: -118.7839, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Hill, New Jersey 39.7879 -74.9857 matched with DB +City: Pine Hill, state: New Jersey, Lat: 39.7879, Lng: -74.9857, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Potomac Park, California 35.3636 -118.9650 matched with DB +City: Potomac Park, state: California, Lat: 35.3636, Lng: -118.965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rancho Mission Viejo, California 33.5140 -117.5618 matched with DB +City: Rancho Mission Viejo, state: California, Lat: 33.514, Lng: -117.5618, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tarboro, North Carolina 35.9046 -77.5563 matched with DB +City: Tarboro, state: North Carolina, Lat: 35.9046, Lng: -77.5563, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison Heights, Virginia 37.4487 -79.1057 matched with DB +City: Madison Heights, state: Michigan, Lat: 42.5073, Lng: -83.1034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison Heights, Virginia 37.4487 -79.1057 matched with DB +City: Madison Heights, state: Virginia, Lat: 37.4487, Lng: -79.1057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maryville, Missouri 40.3428 -94.8702 matched with DB +City: Maryville, state: Missouri, Lat: 40.3428, Lng: -94.8702, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maryville, Missouri 40.3428 -94.8702 matched with DB +City: Maryville, state: Tennessee, Lat: 35.7468, Lng: -83.9789, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Doraville, Georgia 33.9073 -84.2711 matched with DB +City: Doraville, state: Georgia, Lat: 33.9073, Lng: -84.2711, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bogalusa, Louisiana 30.7812 -89.8633 matched with DB +City: Bogalusa, state: Louisiana, Lat: 30.7812, Lng: -89.8633, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Illinois 41.8119 -87.8191 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, New York 42.1470 -77.0561 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Darby, Pennsylvania 39.9210 -75.2610 matched with DB +City: Darby, state: Pennsylvania, Lat: 39.921, Lng: -75.261, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newberry, South Carolina 34.2813 -81.6010 matched with DB +City: Newberry, state: South Carolina, Lat: 34.2813, Lng: -81.601, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newberry, South Carolina 34.2813 -81.6010 matched with DB +City: Newberry, state: Pennsylvania, Lat: 40.1286, Lng: -76.7919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Minnesota 44.8634 -93.6585 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Minnesota 44.8634 -93.6585 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powdersville, South Carolina 34.7826 -82.4959 matched with DB +City: Powdersville, state: South Carolina, Lat: 34.7826, Lng: -82.4959, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain Inn, South Carolina 34.6989 -82.2005 matched with DB +City: Fountain Inn, state: South Carolina, Lat: 34.6989, Lng: -82.2005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clute, Texas 29.0256 -95.3975 matched with DB +City: Clute, state: Texas, Lat: 29.0256, Lng: -95.3975, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broomall, Pennsylvania 39.9688 -75.3540 matched with DB +City: Broomall, state: Pennsylvania, Lat: 39.9688, Lng: -75.354, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Nebraska 40.7779 -99.7461 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Nebraska 40.7779 -99.7461 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Nebraska 40.7779 -99.7461 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Nebraska 40.7779 -99.7461 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Nebraska 40.7779 -99.7461 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Homa, Texas 26.2796 -98.3575 matched with DB +City: La Homa, state: Texas, Lat: 26.2796, Lng: -98.3575, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Myers Corner, New York 41.5864 -73.8793 matched with DB +City: Myers Corner, state: New York, Lat: 41.5864, Lng: -73.8793, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Haverstraw, New York 41.2063 -73.9884 matched with DB +City: West Haverstraw, state: New York, Lat: 41.2063, Lng: -73.9884, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex Junction, Vermont 44.4902 -73.1141 matched with DB +City: Essex Junction, state: Vermont, Lat: 44.4902, Lng: -73.1141, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, West Virginia 39.3240 -81.5383 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, West Virginia 39.3240 -81.5383 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galena Park, Texas 29.7452 -95.2333 matched with DB +City: Galena Park, state: Texas, Lat: 29.7452, Lng: -95.2333, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Friendly, Maryland 38.7601 -76.9642 matched with DB +City: Friendly, state: Maryland, Lat: 38.7601, Lng: -76.9642, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellefontaine Neighbors, Missouri 38.7529 -90.2280 matched with DB +City: Bellefontaine Neighbors, state: Missouri, Lat: 38.7529, Lng: -90.228, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bel Air, Maryland 39.5348 -76.3460 matched with DB +City: Bel Air, state: Maryland, Lat: 39.5348, Lng: -76.346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendall Park, New Jersey 40.4135 -74.5631 matched with DB +City: Kendall Park, state: New Jersey, Lat: 40.4135, Lng: -74.5631, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Canada, Minnesota 45.0244 -93.0863 matched with DB +City: Little Canada, state: Minnesota, Lat: 45.0244, Lng: -93.0863, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Wisconsin 42.6030 -89.6381 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackhawk, California 37.8159 -121.9071 matched with DB +City: Blackhawk, state: California, Lat: 37.8159, Lng: -121.9071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Airy, North Carolina 36.5083 -80.6155 matched with DB +City: Mount Airy, state: Maryland, Lat: 39.3742, Lng: -77.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Airy, North Carolina 36.5083 -80.6155 matched with DB +City: Mount Airy, state: North Carolina, Lat: 36.5083, Lng: -80.6155, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nanticoke, Pennsylvania 41.2005 -76.0003 matched with DB +City: Nanticoke, state: Pennsylvania, Lat: 41.2005, Lng: -76.0003, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Perrine, Florida 25.6061 -80.3639 matched with DB +City: West Perrine, state: Florida, Lat: 25.6061, Lng: -80.3639, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ironton, Ohio 38.5323 -82.6779 matched with DB +City: Ironton, state: Ohio, Lat: 38.5323, Lng: -82.6779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Barcroft, Virginia 38.8514 -77.1579 matched with DB +City: Lake Barcroft, state: Virginia, Lat: 38.8514, Lng: -77.1579, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Washington 47.2189 -122.2338 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Arkansas 33.5672 -92.8467 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Arkansas 33.5672 -92.8467 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottage Grove, Oregon 43.7960 -123.0573 matched with DB +City: Cottage Grove, state: Minnesota, Lat: 44.8161, Lng: -92.9274, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cottage Grove, Oregon 43.7960 -123.0573 matched with DB +City: Cottage Grove, state: Oregon, Lat: 43.796, Lng: -123.0573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, California 37.6758 -122.0473 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wendell, North Carolina 35.7819 -78.3952 matched with DB +City: Wendell, state: North Carolina, Lat: 35.7819, Lng: -78.3952, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yazoo City, Mississippi 32.8619 -90.4075 matched with DB +City: Yazoo City, state: Mississippi, Lat: 32.8619, Lng: -90.4075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alachua, Florida 29.7779 -82.4832 matched with DB +City: Alachua, state: Florida, Lat: 29.7779, Lng: -82.4832, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Airway Heights, Washington 47.6459 -117.5792 matched with DB +City: Airway Heights, state: Washington, Lat: 47.6459, Lng: -117.5792, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scottdale, Georgia 33.7950 -84.2634 matched with DB +City: Scottdale, state: Georgia, Lat: 33.795, Lng: -84.2634, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland Village, California 33.6480 -117.3706 matched with DB +City: Lakeland Village, state: California, Lat: 33.648, Lng: -117.3706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkshire, Virginia 38.7882 -77.4496 matched with DB +City: Yorkshire, state: Virginia, Lat: 38.7882, Lng: -77.4496, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millington, Tennessee 35.3350 -89.8991 matched with DB +City: Millington, state: Tennessee, Lat: 35.335, Lng: -89.8991, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pella, Iowa 41.4052 -92.9189 matched with DB +City: Pella, state: Iowa, Lat: 41.4052, Lng: -92.9189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campton Hills, Illinois 41.9498 -88.4166 matched with DB +City: Campton Hills, state: Illinois, Lat: 41.9498, Lng: -88.4166, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Damascus, Oregon 45.4233 -122.4436 matched with DB +City: Damascus, state: Maryland, Lat: 39.2701, Lng: -77.1957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Damascus, Oregon 45.4233 -122.4436 matched with DB +City: Damascus, state: Oregon, Lat: 45.4233, Lng: -122.4436, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly Hills, Michigan 42.5220 -83.2423 matched with DB +City: Beverly Hills, state: Michigan, Lat: 42.522, Lng: -83.2423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Michigan 42.5220 -83.2423 matched with DB +City: Beverly Hills, state: Florida, Lat: 28.9176, Lng: -82.4542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Michigan 42.5220 -83.2423 matched with DB +City: Beverly Hills, state: California, Lat: 34.0786, Lng: -118.4021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Le Mars, Iowa 42.7810 -96.1733 matched with DB +City: Le Mars, state: Iowa, Lat: 42.781, Lng: -96.1733, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monument, Colorado 39.0736 -104.8467 matched with DB +City: Monument, state: Colorado, Lat: 39.0736, Lng: -104.8467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweetwater, Texas 32.4692 -100.4092 matched with DB +City: Sweetwater, state: Florida, Lat: 25.7785, Lng: -80.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sweetwater, Texas 32.4692 -100.4092 matched with DB +City: Sweetwater, state: Texas, Lat: 32.4692, Lng: -100.4092, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Excelsior Springs, Missouri 39.3390 -94.2400 matched with DB +City: Excelsior Springs, state: Missouri, Lat: 39.339, Lng: -94.24, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Bank, South Carolina 33.9309 -81.2322 matched with DB +City: Red Bank, state: New Jersey, Lat: 40.348, Lng: -74.0672, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Red Bank, South Carolina 33.9309 -81.2322 matched with DB +City: Red Bank, state: South Carolina, Lat: 33.9309, Lng: -81.2322, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Red Bank, South Carolina 33.9309 -81.2322 matched with DB +City: Red Bank, state: Tennessee, Lat: 35.1117, Lng: -85.2962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Ohio 39.8159 -84.2317 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Ohio 39.8159 -84.2317 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Ohio 39.8159 -84.2317 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Pinery, Colorado 39.4462 -104.7591 matched with DB +City: The Pinery, state: Colorado, Lat: 39.4462, Lng: -104.7591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Grove, Illinois 41.9243 -87.8379 matched with DB +City: River Grove, state: Illinois, Lat: 41.9243, Lng: -87.8379, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pineville, North Carolina 35.0864 -80.8915 matched with DB +City: Pineville, state: Louisiana, Lat: 31.3414, Lng: -92.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pineville, North Carolina 35.0864 -80.8915 matched with DB +City: Pineville, state: North Carolina, Lat: 35.0864, Lng: -80.8915, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bellport, New York 40.7868 -72.9457 matched with DB +City: North Bellport, state: New York, Lat: 40.7868, Lng: -72.9457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Illinois 41.6441 -87.6366 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Illinois 41.6441 -87.6366 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Illinois 41.6441 -87.6366 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reading, Ohio 39.2242 -84.4333 matched with DB +City: Reading, state: Pennsylvania, Lat: 40.34, Lng: -75.9267, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Ohio 39.2242 -84.4333 matched with DB +City: Reading, state: Ohio, Lat: 39.2242, Lng: -84.4333, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Ohio 39.2242 -84.4333 matched with DB +City: Reading, state: Massachusetts, Lat: 42.5351, Lng: -71.1056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alderwood Manor, Washington 47.8146 -122.2672 matched with DB +City: Alderwood Manor, state: Washington, Lat: 47.8146, Lng: -122.2672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saks, Alabama 33.7118 -85.8536 matched with DB +City: Saks, state: Alabama, Lat: 33.7118, Lng: -85.8536, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Felida, Washington 45.7138 -122.7103 matched with DB +City: Felida, state: Washington, Lat: 45.7138, Lng: -122.7103, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Albany, Ohio 40.0809 -82.7848 matched with DB +City: New Albany, state: Indiana, Lat: 38.309, Lng: -85.8234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Albany, Ohio 40.0809 -82.7848 matched with DB +City: New Albany, state: Ohio, Lat: 40.0809, Lng: -82.7848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.5469 -122.4390 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loudoun Valley Estates, Virginia 38.9770 -77.5053 matched with DB +City: Loudoun Valley Estates, state: Virginia, Lat: 38.977, Lng: -77.5053, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Acres, South Carolina 34.0323 -80.9716 matched with DB +City: Forest Acres, state: South Carolina, Lat: 34.0323, Lng: -80.9716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stansbury Park, Utah 40.6356 -112.3054 matched with DB +City: Stansbury Park, state: Utah, Lat: 40.6356, Lng: -112.3054, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winterville, North Carolina 35.5291 -77.4000 matched with DB +City: Winterville, state: North Carolina, Lat: 35.5291, Lng: -77.4, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Soquel, California 36.9978 -121.9483 matched with DB +City: Soquel, state: California, Lat: 36.9978, Lng: -121.9483, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lighthouse Point, Florida 26.2785 -80.0891 matched with DB +City: Lighthouse Point, state: Florida, Lat: 26.2785, Lng: -80.0891, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillcrest, California 35.3790 -118.9578 matched with DB +City: Hillcrest, state: California, Lat: 35.379, Lng: -118.9578, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Heath, Ohio 40.0241 -82.4413 matched with DB +City: Heath, state: Ohio, Lat: 40.0241, Lng: -82.4413, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Heath, Ohio 40.0241 -82.4413 matched with DB +City: Heath, state: Texas, Lat: 32.8439, Lng: -96.4674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kearney, Missouri 39.3550 -94.3599 matched with DB +City: Kearney, state: Nebraska, Lat: 40.7011, Lng: -99.0833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kearney, Missouri 39.3550 -94.3599 matched with DB +City: Kearney, state: Missouri, Lat: 39.355, Lng: -94.3599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bonham, Texas 33.5880 -96.1901 matched with DB +City: Bonham, state: Texas, Lat: 33.588, Lng: -96.1901, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelton, Washington 47.2186 -123.1121 matched with DB +City: Shelton, state: Connecticut, Lat: 41.306, Lng: -73.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelton, Washington 47.2186 -123.1121 matched with DB +City: Shelton, state: Washington, Lat: 47.2186, Lng: -123.1121, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somers Point, New Jersey 39.3167 -74.6066 matched with DB +City: Somers Point, state: New Jersey, Lat: 39.3167, Lng: -74.6066, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Hopatcong, New Jersey 40.9599 -74.6094 matched with DB +City: Lake Hopatcong, state: New Jersey, Lat: 40.9599, Lng: -74.6094, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellmead, Texas 31.6026 -97.0897 matched with DB +City: Bellmead, state: Texas, Lat: 31.6026, Lng: -97.0897, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Española, New Mexico 36.0044 -106.0686 matched with DB +City: Espanola, state: New Mexico, Lat: 36.0044, Lng: -106.0686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palatka, Florida 29.6493 -81.6705 matched with DB +City: Palatka, state: Florida, Lat: 29.6493, Lng: -81.6705, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluffton, Indiana 40.7424 -85.1730 matched with DB +City: Bluffton, state: Indiana, Lat: 40.7424, Lng: -85.173, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bluffton, Indiana 40.7424 -85.1730 matched with DB +City: Bluffton, state: South Carolina, Lat: 32.2135, Lng: -80.9316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vermilion, Ohio 41.4103 -82.3214 matched with DB +City: Vermilion, state: Ohio, Lat: 41.4103, Lng: -82.3214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waimea, Hawaii 20.0124 -155.6381 matched with DB +City: Waimea, state: Hawaii, Lat: 20.0124, Lng: -155.6381, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Morton-Berrydale, Washington 47.3325 -122.1032 matched with DB +City: Lake Morton-Berrydale, state: Washington, Lat: 47.3325, Lng: -122.1032, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chalco, Nebraska 41.1817 -96.1353 matched with DB +City: Chalco, state: Nebraska, Lat: 41.1817, Lng: -96.1353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Iowa 41.5867 -93.4953 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Iowa 41.5867 -93.4953 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Iowa 41.5867 -93.4953 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage, Wisconsin 43.5489 -89.4658 matched with DB +City: Portage, state: Wisconsin, Lat: 43.5489, Lng: -89.4658, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Wisconsin 43.5489 -89.4658 matched with DB +City: Portage, state: Michigan, Lat: 42.2, Lng: -85.5906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Wisconsin 43.5489 -89.4658 matched with DB +City: Portage, state: Indiana, Lat: 41.5856, Lng: -87.1797, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flat Rock, Michigan 42.0991 -83.2716 matched with DB +City: Flat Rock, state: Michigan, Lat: 42.0991, Lng: -83.2716, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley, Alabama 32.8088 -85.1810 matched with DB +City: Valley, state: Alabama, Lat: 32.8088, Lng: -85.181, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverton, Oregon 45.0030 -122.7808 matched with DB +City: Silverton, state: Oregon, Lat: 45.003, Lng: -122.7808, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yelm, Washington 46.9398 -122.6262 matched with DB +City: Yelm, state: Washington, Lat: 46.9398, Lng: -122.6262, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Difficult Run, Virginia 38.9016 -77.3471 matched with DB +City: Difficult Run, state: Virginia, Lat: 38.9016, Lng: -77.3471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lovejoy, Georgia 33.4426 -84.3177 matched with DB +City: Lovejoy, state: Georgia, Lat: 33.4426, Lng: -84.3177, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warr Acres, Oklahoma 35.5285 -97.6182 matched with DB +City: Warr Acres, state: Oklahoma, Lat: 35.5285, Lng: -97.6182, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rifle, Colorado 39.5362 -107.7729 matched with DB +City: Rifle, state: Colorado, Lat: 39.5362, Lng: -107.7729, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wabash, Indiana 40.8034 -85.8301 matched with DB +City: Wabash, state: Indiana, Lat: 40.8034, Lng: -85.8301, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Missouri 39.3919 -94.5747 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Missouri 39.3919 -94.5747 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmont, Minnesota 43.6441 -94.4621 matched with DB +City: Fairmont, state: West Virginia, Lat: 39.4768, Lng: -80.1491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmont, Minnesota 43.6441 -94.4621 matched with DB +City: Fairmont, state: Minnesota, Lat: 43.6441, Lng: -94.4621, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlton, New Jersey 39.9014 -74.9294 matched with DB +City: Marlton, state: New Jersey, Lat: 39.9014, Lng: -74.9294, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marlton, New Jersey 39.9014 -74.9294 matched with DB +City: Marlton, state: Maryland, Lat: 38.762, Lng: -76.7857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cadillac, Michigan 44.2493 -85.4164 matched with DB +City: Cadillac, state: Michigan, Lat: 44.2493, Lng: -85.4164, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vista, Washington 45.7373 -122.6316 matched with DB +City: Mount Vista, state: Washington, Lat: 45.7373, Lng: -122.6316, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Iowa 42.7250 -92.4708 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Iowa 42.7250 -92.4708 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, Colorado 39.7931 -105.1711 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, Colorado 39.7931 -105.1711 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sleepy Hollow, New York 41.0936 -73.8722 matched with DB +City: Sleepy Hollow, state: New York, Lat: 41.0936, Lng: -73.8722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gateway, Florida 26.5793 -81.7446 matched with DB +City: Gateway, state: Florida, Lat: 26.5793, Lng: -81.7446, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmersville, California 36.3050 -119.2083 matched with DB +City: Farmersville, state: California, Lat: 36.305, Lng: -119.2083, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spout Springs, North Carolina 35.2724 -79.0331 matched with DB +City: Spout Springs, state: North Carolina, Lat: 35.2724, Lng: -79.0331, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennett, Missouri 36.2403 -90.0481 matched with DB +City: Kennett, state: Missouri, Lat: 36.2403, Lng: -90.0481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kennett, Missouri 36.2403 -90.0481 matched with DB +City: Kennett, state: Pennsylvania, Lat: 39.8374, Lng: -75.6808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Comstock Park, Michigan 43.0438 -85.6778 matched with DB +City: Comstock Park, state: Michigan, Lat: 43.0438, Lng: -85.6778, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galion, Ohio 40.7385 -82.7792 matched with DB +City: Galion, state: Ohio, Lat: 40.7385, Lng: -82.7792, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Indiana 41.3483 -86.3187 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Indiana 41.3483 -86.3187 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Indiana 41.3483 -86.3187 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Indiana 41.3483 -86.3187 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Indiana 41.3483 -86.3187 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Indiana 41.3483 -86.3187 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calimesa, California 33.9874 -117.0542 matched with DB +City: Calimesa, state: California, Lat: 33.9874, Lng: -117.0542, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shasta Lake, California 40.6790 -122.3775 matched with DB +City: Shasta Lake, state: California, Lat: 40.679, Lng: -122.3775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arkadelphia, Arkansas 34.1253 -93.0729 matched with DB +City: Arkadelphia, state: Arkansas, Lat: 34.1253, Lng: -93.0729, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Texas 33.1399 -96.6117 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scotchtown, New York 41.4765 -74.3668 matched with DB +City: Scotchtown, state: New York, Lat: 41.4765, Lng: -74.3668, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Georgia 32.0867 -81.1773 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Georgia 32.0867 -81.1773 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Georgia 32.0867 -81.1773 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Georgia 32.0867 -81.1773 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Georgia 32.0867 -81.1773 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Georgia 32.0867 -81.1773 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlyn, Pennsylvania 39.8774 -75.3445 matched with DB +City: Woodlyn, state: Pennsylvania, Lat: 39.8774, Lng: -75.3445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northampton, Pennsylvania 40.6866 -75.4904 matched with DB +City: Northampton, state: Massachusetts, Lat: 42.3266, Lng: -72.6745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Northampton, Pennsylvania 40.6866 -75.4904 matched with DB +City: Northampton, state: Pennsylvania, Lat: 40.6866, Lng: -75.4904, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Northampton, Pennsylvania 40.6866 -75.4904 matched with DB +City: Northampton, state: Pennsylvania, Lat: 40.2104, Lng: -75.0014, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chestnut Ridge, New York 41.0829 -74.0551 matched with DB +City: Chestnut Ridge, state: New York, Lat: 41.0829, Lng: -74.0551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Marsh, Maryland 39.3819 -76.4574 matched with DB +City: White Marsh, state: Maryland, Lat: 39.3819, Lng: -76.4574, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trumbull Center, Connecticut 41.2415 -73.1836 matched with DB +City: Trumbull Center, state: Connecticut, Lat: 41.2415, Lng: -73.1836, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Exeter, California 36.2941 -119.1459 matched with DB +City: Exeter, state: California, Lat: 36.2941, Lng: -119.1459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, California 36.2941 -119.1459 matched with DB +City: Exeter, state: New Hampshire, Lat: 42.9901, Lng: -70.9646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, California 36.2941 -119.1459 matched with DB +City: Exeter, state: Pennsylvania, Lat: 40.3139, Lng: -75.834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneida, New York 43.0769 -75.6622 matched with DB +City: Oneida, state: New York, Lat: 43.0769, Lng: -75.6622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watervliet, New York 42.7243 -73.7068 matched with DB +City: Watervliet, state: New York, Lat: 42.7243, Lng: -73.7068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Kentucky 38.9621 -84.3859 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Kentucky 38.9621 -84.3859 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Kentucky 38.9621 -84.3859 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Kentucky 38.9621 -84.3859 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Oregon 44.6242 -124.0513 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Oregon 44.6242 -124.0513 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Oregon 44.6242 -124.0513 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berwick, Pennsylvania 41.0555 -76.2492 matched with DB +City: Berwick, state: Pennsylvania, Lat: 41.0555, Lng: -76.2492, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: London, Ohio 39.8935 -83.4375 matched with DB +City: London, state: Ohio, Lat: 39.8935, Lng: -83.4375, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burtonsville, Maryland 39.1166 -76.9356 matched with DB +City: Burtonsville, state: Maryland, Lat: 39.1166, Lng: -76.9356, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clay, Alabama 33.6951 -86.6090 matched with DB +City: Clay, state: Alabama, Lat: 33.6951, Lng: -86.609, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clay, Alabama 33.6951 -86.6090 matched with DB +City: Clay, state: New York, Lat: 43.1808, Lng: -76.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Vero Corridor, Florida 27.6363 -80.4844 matched with DB +City: West Vero Corridor, state: Florida, Lat: 27.6363, Lng: -80.4844, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bacliff, Texas 29.5085 -94.9888 matched with DB +City: Bacliff, state: Texas, Lat: 29.5085, Lng: -94.9888, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wood River, Illinois 38.8631 -90.0774 matched with DB +City: Wood River, state: Illinois, Lat: 38.8631, Lng: -90.0774, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookdale, New Jersey 40.8348 -74.1798 matched with DB +City: Brookdale, state: New Jersey, Lat: 40.8348, Lng: -74.1798, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Tennessee 36.2933 -88.3065 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Tennessee 36.2933 -88.3065 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Tennessee 36.2933 -88.3065 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Huntington, New York 40.8225 -73.3921 matched with DB +City: South Huntington, state: New York, Lat: 40.8225, Lng: -73.3921, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesville, North Carolina 35.4854 -82.9996 matched with DB +City: Waynesville, state: North Carolina, Lat: 35.4854, Lng: -82.9996, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymondville, Texas 26.4759 -97.7769 matched with DB +City: Raymondville, state: Texas, Lat: 26.4759, Lng: -97.7769, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Versailles, Kentucky 38.0486 -84.7258 matched with DB +City: Versailles, state: Kentucky, Lat: 38.0486, Lng: -84.7258, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murrells Inlet, South Carolina 33.5560 -79.0594 matched with DB +City: Murrells Inlet, state: South Carolina, Lat: 33.556, Lng: -79.0594, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Madison, Iowa 40.6207 -91.3509 matched with DB +City: Fort Madison, state: Iowa, Lat: 40.6207, Lng: -91.3509, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lenoir City, Tennessee 35.8111 -84.2818 matched with DB +City: Lenoir City, state: Tennessee, Lat: 35.8111, Lng: -84.2818, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, Maryland 38.8518 -76.8708 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, Maryland 38.8518 -76.8708 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Plata, Maryland 38.5352 -76.9700 matched with DB +City: La Plata, state: Maryland, Lat: 38.5352, Lng: -76.97, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marina del Rey, California 33.9765 -118.4486 matched with DB +City: Marina del Rey, state: California, Lat: 33.9765, Lng: -118.4486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tremonton, Utah 41.7187 -112.1890 matched with DB +City: Tremonton, state: Utah, Lat: 41.7187, Lng: -112.189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carroll, Iowa 42.0699 -94.8646 matched with DB +City: Carroll, state: Iowa, Lat: 42.0699, Lng: -94.8646, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Ridge, Florida 28.9330 -82.4761 matched with DB +City: Pine Ridge, state: Florida, Lat: 28.933, Lng: -82.4761, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tipp City, Ohio 39.9644 -84.1866 matched with DB +City: Tipp City, state: Ohio, Lat: 39.9644, Lng: -84.1866, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockport, Texas 28.0290 -97.0722 matched with DB +City: Rockport, state: Texas, Lat: 28.029, Lng: -97.0722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Lakes, Alaska 61.6191 -149.3110 matched with DB +City: North Lakes, state: Alaska, Lat: 61.6191, Lng: -149.311, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Utah 40.4629 -111.7724 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Utah 40.4629 -111.7724 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Florida 30.6286 -87.0522 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Florida 30.6286 -87.0522 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Florida 30.6286 -87.0522 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Florida 30.6286 -87.0522 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Florida 30.6286 -87.0522 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Florida 30.6286 -87.0522 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitestown, Indiana 39.9706 -86.3612 matched with DB +City: Whitestown, state: Indiana, Lat: 39.9706, Lng: -86.3612, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Whitestown, Indiana 39.9706 -86.3612 matched with DB +City: Whitestown, state: New York, Lat: 43.135, Lng: -75.3404, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhorn, Wisconsin 42.6713 -88.5377 matched with DB +City: Elkhorn, state: Wisconsin, Lat: 42.6713, Lng: -88.5377, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bend, Oregon 43.4075 -124.2364 matched with DB +City: North Bend, state: Oregon, Lat: 43.4075, Lng: -124.2364, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boaz, Alabama 34.1985 -86.1529 matched with DB +City: Boaz, state: Alabama, Lat: 34.1985, Lng: -86.1529, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Whittier, California 33.9244 -117.9887 matched with DB +City: East Whittier, state: California, Lat: 33.9244, Lng: -117.9887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, Florida 28.1587 -81.6083 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, Florida 28.1587 -81.6083 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robstown, Texas 27.7940 -97.6692 matched with DB +City: Robstown, state: Texas, Lat: 27.794, Lng: -97.6692, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Diego Country Estates, California 33.0094 -116.7874 matched with DB +City: San Diego Country Estates, state: California, Lat: 33.0094, Lng: -116.7874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hyde Park, New York 40.7323 -73.6858 matched with DB +City: New Hyde Park, state: New York, Lat: 40.7323, Lng: -73.6858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Setauket, New York 40.9210 -73.0942 matched with DB +City: East Setauket, state: New York, Lat: 40.921, Lng: -73.0942, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rotonda, Florida 26.8844 -82.2791 matched with DB +City: Rotonda, state: Florida, Lat: 26.8844, Lng: -82.2791, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halfway, Maryland 39.6162 -77.7703 matched with DB +City: Halfway, state: Maryland, Lat: 39.6162, Lng: -77.7703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Illinois 38.7602 -89.6812 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Illinois 38.7602 -89.6812 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Illinois 38.7602 -89.6812 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Illinois 38.7602 -89.6812 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pingree Grove, Illinois 42.0855 -88.4358 matched with DB +City: Pingree Grove, state: Illinois, Lat: 42.0855, Lng: -88.4358, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cordele, Georgia 31.9563 -83.7694 matched with DB +City: Cordele, state: Georgia, Lat: 31.9563, Lng: -83.7694, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flowood, Mississippi 32.3359 -90.0802 matched with DB +City: Flowood, state: Mississippi, Lat: 32.3359, Lng: -90.0802, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Pennsylvania 40.0347 -76.4944 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Pennsylvania 40.0347 -76.4944 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Pennsylvania 40.0347 -76.4944 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Pennsylvania 40.0347 -76.4944 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Pennsylvania 40.0347 -76.4944 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Pennsylvania 40.0347 -76.4944 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Oglethorpe, Georgia 34.9318 -85.2460 matched with DB +City: Fort Oglethorpe, state: Georgia, Lat: 34.9318, Lng: -85.246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpena, Michigan 45.0740 -83.4402 matched with DB +City: Alpena, state: Michigan, Lat: 45.074, Lng: -83.4402, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carencro, Louisiana 30.3126 -92.0388 matched with DB +City: Carencro, state: Louisiana, Lat: 30.3126, Lng: -92.0388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claymont, Delaware 39.8032 -75.4607 matched with DB +City: Claymont, state: Delaware, Lat: 39.8032, Lng: -75.4607, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Arrowhead, California 34.2531 -117.1944 matched with DB +City: Lake Arrowhead, state: California, Lat: 34.2531, Lng: -117.1944, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rainbow City, Alabama 33.9336 -86.0922 matched with DB +City: Rainbow City, state: Alabama, Lat: 33.9336, Lng: -86.0922, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Astoria, Oregon 46.1856 -123.8053 matched with DB +City: Astoria, state: Oregon, Lat: 46.1856, Lng: -123.8053, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendallville, Indiana 41.4441 -85.2578 matched with DB +City: Kendallville, state: Indiana, Lat: 41.4441, Lng: -85.2578, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlton, Maryland 38.7620 -76.7857 matched with DB +City: Marlton, state: New Jersey, Lat: 39.9014, Lng: -74.9294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marlton, Maryland 38.7620 -76.7857 matched with DB +City: Marlton, state: Maryland, Lat: 38.762, Lng: -76.7857, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedartown, Georgia 34.0223 -85.2479 matched with DB +City: Cedartown, state: Georgia, Lat: 34.0223, Lng: -85.2479, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Townsend, Washington 48.1220 -122.7877 matched with DB +City: Port Townsend, state: Washington, Lat: 48.122, Lng: -122.7877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Richmond, Wisconsin 45.1250 -92.5377 matched with DB +City: New Richmond, state: Wisconsin, Lat: 45.125, Lng: -92.5377, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corte Madera, California 37.9238 -122.5128 matched with DB +City: Corte Madera, state: California, Lat: 37.9238, Lng: -122.5128, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Molalla, Oregon 45.1502 -122.5845 matched with DB +City: Molalla, state: Oregon, Lat: 45.1502, Lng: -122.5845, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Kentucky 38.2016 -84.2718 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Kentucky 38.2016 -84.2718 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Kentucky 38.2016 -84.2718 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernal, Utah 40.4517 -109.5378 matched with DB +City: Vernal, state: Utah, Lat: 40.4517, Lng: -109.5378, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Louisiana 29.9609 -90.1554 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Louisiana 29.9609 -90.1554 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Louisiana 29.9609 -90.1554 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kentucky 36.7177 -86.5595 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Gates, New York 43.1718 -77.7064 matched with DB +City: North Gates, state: New York, Lat: 43.1718, Lng: -77.7064, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hermantown, Minnesota 46.8057 -92.2407 matched with DB +City: Hermantown, state: Minnesota, Lat: 46.8057, Lng: -92.2407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snohomish, Washington 47.9276 -122.0969 matched with DB +City: Snohomish, state: Washington, Lat: 47.9276, Lng: -122.0969, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobart, Wisconsin 44.4967 -88.1602 matched with DB +City: Hobart, state: Indiana, Lat: 41.514, Lng: -87.2729, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hobart, Wisconsin 44.4967 -88.1602 matched with DB +City: Hobart, state: Wisconsin, Lat: 44.4967, Lng: -88.1602, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Wisconsin 44.3003 -88.5365 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, New Jersey 41.0074 -74.0440 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden Acres, California 37.9637 -121.2296 matched with DB +City: Garden Acres, state: California, Lat: 37.9637, Lng: -121.2296, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Safford, Arizona 32.8335 -109.6964 matched with DB +City: Safford, state: Arizona, Lat: 32.8335, Lng: -109.6964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hackettstown, New Jersey 40.8540 -74.8257 matched with DB +City: Hackettstown, state: New Jersey, Lat: 40.854, Lng: -74.8257, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenton, Virginia 38.7176 -77.7976 matched with DB +City: Warrenton, state: Virginia, Lat: 38.7176, Lng: -77.7976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrenton, Virginia 38.7176 -77.7976 matched with DB +City: Warrenton, state: Missouri, Lat: 38.8187, Lng: -91.1385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker City, Oregon 44.7749 -117.8320 matched with DB +City: Baker City, state: Oregon, Lat: 44.7749, Lng: -117.832, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gunbarrel, Colorado 40.0632 -105.1713 matched with DB +City: Gunbarrel, state: Colorado, Lat: 40.0632, Lng: -105.1713, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood Springs, Colorado 39.5455 -107.3347 matched with DB +City: Glenwood Springs, state: Colorado, Lat: 39.5455, Lng: -107.3347, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Progress Village, Florida 27.8831 -82.3593 matched with DB +City: Progress Village, state: Florida, Lat: 27.8831, Lng: -82.3593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cairo, Georgia 30.8790 -84.2050 matched with DB +City: Cairo, state: Georgia, Lat: 30.879, Lng: -84.205, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quartz Hill, California 34.6527 -118.2163 matched with DB +City: Quartz Hill, state: California, Lat: 34.6527, Lng: -118.2163, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandywine, Maryland 38.6963 -76.8846 matched with DB +City: Brandywine, state: Maryland, Lat: 38.6963, Lng: -76.8846, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Ohio 40.0221 -81.5869 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Ohio 40.0221 -81.5869 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Ohio 40.0221 -81.5869 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Ohio 40.0221 -81.5869 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spanish Fort, Alabama 30.7254 -87.8597 matched with DB +City: Spanish Fort, state: Alabama, Lat: 30.7254, Lng: -87.8597, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cody, Wyoming 44.5213 -109.0548 matched with DB +City: Cody, state: Wyoming, Lat: 44.5213, Lng: -109.0548, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio Vista, California 38.1765 -121.7025 matched with DB +City: Rio Vista, state: California, Lat: 38.1765, Lng: -121.7025, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, Kentucky 38.3987 -85.3750 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Kentucky 38.3987 -85.3750 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Kentucky 38.3987 -85.3750 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Elizario, Texas 31.5793 -106.2632 matched with DB +City: San Elizario, state: Texas, Lat: 31.5793, Lng: -106.2632, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atoka, Tennessee 35.4239 -89.7861 matched with DB +City: Atoka, state: Tennessee, Lat: 35.4239, Lng: -89.7861, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Rockaway, New York 40.6432 -73.6672 matched with DB +City: East Rockaway, state: New York, Lat: 40.6432, Lng: -73.6672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bee Ridge, Florida 27.2855 -82.4731 matched with DB +City: Bee Ridge, state: Florida, Lat: 27.2855, Lng: -82.4731, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waldwick, New Jersey 41.0133 -74.1259 matched with DB +City: Waldwick, state: New Jersey, Lat: 41.0133, Lng: -74.1259, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howell, Michigan 42.6078 -83.9339 matched with DB +City: Howell, state: Michigan, Lat: 42.6078, Lng: -83.9339, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Howell, Michigan 42.6078 -83.9339 matched with DB +City: Howell, state: New Jersey, Lat: 40.1819, Lng: -74.1976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Hiawatha, New Jersey 40.8816 -74.3826 matched with DB +City: Lake Hiawatha, state: New Jersey, Lat: 40.8816, Lng: -74.3826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Mississippi 33.6064 -88.6572 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Mississippi 33.6064 -88.6572 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Struthers, Ohio 41.0510 -80.5920 matched with DB +City: Struthers, state: Ohio, Lat: 41.051, Lng: -80.592, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Browns Mills, New Jersey 39.9737 -74.5690 matched with DB +City: Browns Mills, state: New Jersey, Lat: 39.9737, Lng: -74.569, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Tennessee 36.0981 -84.1283 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange Lake, New York 41.5369 -74.1005 matched with DB +City: Orange Lake, state: New York, Lat: 41.5369, Lng: -74.1005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scenic Oaks, Texas 29.7038 -98.6712 matched with DB +City: Scenic Oaks, state: Texas, Lat: 29.7038, Lng: -98.6712, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackwells Mills, New Jersey 40.4773 -74.5976 matched with DB +City: Blackwells Mills, state: New Jersey, Lat: 40.4773, Lng: -74.5976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakbrook, Kentucky 38.9996 -84.6797 matched with DB +City: Oakbrook, state: Kentucky, Lat: 38.9996, Lng: -84.6797, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Francisville, Kentucky 39.1068 -84.7277 matched with DB +City: Francisville, state: Kentucky, Lat: 39.1068, Lng: -84.7277, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Texas 30.3526 -97.3883 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Texas 30.3526 -97.3883 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Makaha, Hawaii 21.4739 -158.2102 matched with DB +City: Makaha, state: Hawaii, Lat: 21.4739, Lng: -158.2102, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maywood, New Jersey 40.9025 -74.0634 matched with DB +City: Maywood, state: New Jersey, Lat: 40.9025, Lng: -74.0634, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, New Jersey 40.9025 -74.0634 matched with DB +City: Maywood, state: Illinois, Lat: 41.8798, Lng: -87.8442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, New Jersey 40.9025 -74.0634 matched with DB +City: Maywood, state: California, Lat: 33.9886, Lng: -118.1877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cross Lanes, West Virginia 38.4351 -81.7707 matched with DB +City: Cross Lanes, state: West Virginia, Lat: 38.4351, Lng: -81.7707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheat Lake, West Virginia 39.6670 -79.8564 matched with DB +City: Cheat Lake, state: West Virginia, Lat: 39.667, Lng: -79.8564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisonville, Missouri 38.6530 -94.3467 matched with DB +City: Harrisonville, state: Missouri, Lat: 38.653, Lng: -94.3467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Airmont, New York 41.0992 -74.0989 matched with DB +City: Airmont, state: New York, Lat: 41.0992, Lng: -74.0989, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Rutherford, New Jersey 40.8179 -74.0854 matched with DB +City: East Rutherford, state: New Jersey, Lat: 40.8179, Lng: -74.0854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reedsburg, Wisconsin 43.5348 -89.9965 matched with DB +City: Reedsburg, state: Wisconsin, Lat: 43.5348, Lng: -89.9965, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grosse Pointe Farms, Michigan 42.4068 -82.8993 matched with DB +City: Grosse Pointe Farms, state: Michigan, Lat: 42.4068, Lng: -82.8993, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Texas 34.1479 -99.3000 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Texas 34.1479 -99.3000 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: George Mason, Virginia 38.8356 -77.3186 matched with DB +City: George Mason, state: Virginia, Lat: 38.8356, Lng: -77.3186, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesapeake Ranch Estates, Maryland 38.3574 -76.4147 matched with DB +City: Chesapeake Ranch Estates, state: Maryland, Lat: 38.3574, Lng: -76.4147, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mayfield, Kentucky 36.7371 -88.6447 matched with DB +City: Mayfield, state: Kentucky, Lat: 36.7371, Lng: -88.6447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roslyn, Pennsylvania 40.1311 -75.1374 matched with DB +City: Roslyn, state: Pennsylvania, Lat: 40.1311, Lng: -75.1374, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Meade, Maryland 39.1061 -76.7437 matched with DB +City: Fort Meade, state: Maryland, Lat: 39.1061, Lng: -76.7437, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Arkansas 36.2561 -94.1532 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Arkansas 36.2561 -94.1532 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Arkansas 36.2561 -94.1532 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kinnelon, New Jersey 40.9847 -74.3862 matched with DB +City: Kinnelon, state: New Jersey, Lat: 40.9847, Lng: -74.3862, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Budd Lake, New Jersey 40.8733 -74.7375 matched with DB +City: Budd Lake, state: New Jersey, Lat: 40.8733, Lng: -74.7375, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brentwood, Pennsylvania 40.3734 -79.9757 matched with DB +City: Brentwood, state: Pennsylvania, Lat: 40.3734, Lng: -79.9757, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Pennsylvania 40.3734 -79.9757 matched with DB +City: Brentwood, state: New York, Lat: 40.7839, Lng: -73.2522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Pennsylvania 40.3734 -79.9757 matched with DB +City: Brentwood, state: Tennessee, Lat: 35.9918, Lng: -86.7758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Pennsylvania 40.3734 -79.9757 matched with DB +City: Brentwood, state: California, Lat: 37.9356, Lng: -121.719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, New Jersey 39.8379 -75.1524 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New Jersey 39.8379 -75.1524 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New Jersey 39.8379 -75.1524 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New Jersey 39.8379 -75.1524 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Oregon 44.8547 -123.1952 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Oregon 44.8547 -123.1952 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Oregon 44.8547 -123.1952 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Oregon 44.8547 -123.1952 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cape Canaveral, Florida 28.3933 -80.6049 matched with DB +City: Cape Canaveral, state: Florida, Lat: 28.3933, Lng: -80.6049, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wood-Ridge, New Jersey 40.8508 -74.0878 matched with DB +City: Wood-Ridge, state: New Jersey, Lat: 40.8508, Lng: -74.0878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, New York 43.0414 -76.2485 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, New York 43.0414 -76.2485 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Hills, Utah 40.4135 -111.7531 matched with DB +City: Cedar Hills, state: Utah, Lat: 40.4135, Lng: -111.7531, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cedar Hills, Utah 40.4135 -111.7531 matched with DB +City: Cedar Hills, state: Oregon, Lat: 45.5047, Lng: -122.8053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Alabama 33.4747 -86.9194 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Alabama 33.4747 -86.9194 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Alabama 33.4747 -86.9194 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Alabama 33.4747 -86.9194 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker Mill, Maryland 38.8758 -76.8854 matched with DB +City: Walker Mill, state: Maryland, Lat: 38.8758, Lng: -76.8854, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Michigan 42.9084 -82.4806 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Michigan 42.9084 -82.4806 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Michigan 42.9084 -82.4806 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Michigan 42.9084 -82.4806 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willoughby Hills, Ohio 41.5873 -81.4333 matched with DB +City: Willoughby Hills, state: Ohio, Lat: 41.5873, Lng: -81.4333, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Liverpool, Ohio 40.6333 -80.5677 matched with DB +City: East Liverpool, state: Ohio, Lat: 40.6333, Lng: -80.5677, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit Lakes, Minnesota 46.8060 -95.8449 matched with DB +City: Detroit Lakes, state: Minnesota, Lat: 46.806, Lng: -95.8449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodburn, Virginia 38.8503 -77.2322 matched with DB +City: Woodburn, state: Oregon, Lat: 45.1472, Lng: -122.8603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodburn, Virginia 38.8503 -77.2322 matched with DB +City: Woodburn, state: Virginia, Lat: 38.8503, Lng: -77.2322, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bastrop, Texas 30.1113 -97.3176 matched with DB +City: Bastrop, state: Louisiana, Lat: 32.7748, Lng: -91.9078, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bastrop, Texas 30.1113 -97.3176 matched with DB +City: Bastrop, state: Texas, Lat: 30.1113, Lng: -97.3176, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DuPont, Washington 47.1079 -122.6495 matched with DB +City: DuPont, state: Washington, Lat: 47.1079, Lng: -122.6495, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halls, Tennessee 36.0817 -83.9344 matched with DB +City: Halls, state: Tennessee, Lat: 36.0817, Lng: -83.9344, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muskegon Heights, Michigan 43.2023 -86.2421 matched with DB +City: Muskegon Heights, state: Michigan, Lat: 43.2023, Lng: -86.2421, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallston, Maryland 39.5332 -76.4452 matched with DB +City: Fallston, state: Maryland, Lat: 39.5332, Lng: -76.4452, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Picnic Point, Washington 47.8744 -122.3077 matched with DB +City: Picnic Point, state: Washington, Lat: 47.8744, Lng: -122.3077, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sellersburg, Indiana 38.4028 -85.7706 matched with DB +City: Sellersburg, state: Indiana, Lat: 38.4028, Lng: -85.7706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Illinois 41.8787 -88.1507 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Illinois 41.8787 -88.1507 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Wisconsin 43.9377 -90.8131 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Wisconsin 43.9377 -90.8131 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Villas, New Jersey 39.0157 -74.9350 matched with DB +City: Villas, state: New Jersey, Lat: 39.0157, Lng: -74.935, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Villas, New Jersey 39.0157 -74.9350 matched with DB +City: Villas, state: Florida, Lat: 26.5504, Lng: -81.8678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockcreek, Oregon 45.5526 -122.8760 matched with DB +City: Rockcreek, state: Oregon, Lat: 45.5526, Lng: -122.876, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Capitola, California 36.9773 -121.9537 matched with DB +City: Capitola, state: California, Lat: 36.9773, Lng: -121.9537, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rye Brook, New York 41.0302 -73.6864 matched with DB +City: Rye Brook, state: New York, Lat: 41.0302, Lng: -73.6864, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks Ranch, Texas 29.7467 -98.6376 matched with DB +City: Fair Oaks Ranch, state: Texas, Lat: 29.7467, Lng: -98.6376, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ellisville, Missouri 38.5897 -90.5884 matched with DB +City: Ellisville, state: Missouri, Lat: 38.5897, Lng: -90.5884, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Pennsylvania 39.8993 -79.7246 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coweta, Oklahoma 35.9683 -95.6545 matched with DB +City: Coweta, state: Oklahoma, Lat: 35.9683, Lng: -95.6545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogdensburg, New York 44.7088 -75.4717 matched with DB +City: Ogdensburg, state: New York, Lat: 44.7088, Lng: -75.4717, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission, Kansas 39.0270 -94.6568 matched with DB +City: Mission, state: Kansas, Lat: 39.027, Lng: -94.6568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mission, Kansas 39.0270 -94.6568 matched with DB +City: Mission, state: Texas, Lat: 26.2039, Lng: -98.3256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Hills, California 35.1409 -118.4968 matched with DB +City: Golden Hills, state: California, Lat: 35.1409, Lng: -118.4968, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, Virginia 39.0622 -77.4985 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Virginia 39.0622 -77.4985 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Virginia 39.0622 -77.4985 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Virginia 39.0622 -77.4985 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Augustine Shores, Florida 29.8039 -81.3086 matched with DB +City: St. Augustine Shores, state: Florida, Lat: 29.8039, Lng: -81.3086, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beckett Ridge, Ohio 39.3448 -84.4380 matched with DB +City: Beckett Ridge, state: Ohio, Lat: 39.3448, Lng: -84.438, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wapakoneta, Ohio 40.5664 -84.1916 matched with DB +City: Wapakoneta, state: Ohio, Lat: 40.5664, Lng: -84.1916, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keokuk, Iowa 40.4095 -91.4031 matched with DB +City: Keokuk, state: Iowa, Lat: 40.4095, Lng: -91.4031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greencastle, Indiana 39.6432 -86.8418 matched with DB +City: Greencastle, state: Indiana, Lat: 39.6432, Lng: -86.8418, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond Heights, Florida 25.6347 -80.3721 matched with DB +City: Richmond Heights, state: Ohio, Lat: 41.5589, Lng: -81.5029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond Heights, Florida 25.6347 -80.3721 matched with DB +City: Richmond Heights, state: Missouri, Lat: 38.6309, Lng: -90.3332, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond Heights, Florida 25.6347 -80.3721 matched with DB +City: Richmond Heights, state: Florida, Lat: 25.6347, Lng: -80.3721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sauk Village, Illinois 41.4906 -87.5706 matched with DB +City: Sauk Village, state: Illinois, Lat: 41.4906, Lng: -87.5706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independent Hill, Virginia 38.6404 -77.4089 matched with DB +City: Independent Hill, state: Virginia, Lat: 38.6404, Lng: -77.4089, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweet Home, Oregon 44.4023 -122.7028 matched with DB +City: Sweet Home, state: Oregon, Lat: 44.4023, Lng: -122.7028, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: DeRidder, Louisiana 30.8468 -93.2931 matched with DB +City: DeRidder, state: Louisiana, Lat: 30.8468, Lng: -93.2931, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lambertville, Michigan 41.7484 -83.6244 matched with DB +City: Lambertville, state: Michigan, Lat: 41.7484, Lng: -83.6244, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Salonga, New York 40.9068 -73.2996 matched with DB +City: Fort Salonga, state: New York, Lat: 40.9068, Lng: -73.2996, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Succasunna, New Jersey 40.8530 -74.6568 matched with DB +City: Succasunna, state: New Jersey, Lat: 40.853, Lng: -74.6568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bardmoor, Florida 27.8574 -82.7534 matched with DB +City: Bardmoor, state: Florida, Lat: 27.8574, Lng: -82.7534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peru, Illinois 41.3482 -89.1371 matched with DB +City: Peru, state: Illinois, Lat: 41.3482, Lng: -89.1371, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peru, Illinois 41.3482 -89.1371 matched with DB +City: Peru, state: Indiana, Lat: 40.7593, Lng: -86.0756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loudonville, New York 42.7068 -73.7665 matched with DB +City: Loudonville, state: New York, Lat: 42.7068, Lng: -73.7665, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jesup, Georgia 31.5992 -81.8895 matched with DB +City: Jesup, state: Georgia, Lat: 31.5992, Lng: -81.8895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Louisiana 30.2233 -92.6582 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Louisiana 30.2233 -92.6582 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little River, South Carolina 33.8786 -78.6393 matched with DB +City: Little River, state: South Carolina, Lat: 33.8786, Lng: -78.6393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vidor, Texas 30.1291 -93.9967 matched with DB +City: Vidor, state: Texas, Lat: 30.1291, Lng: -93.9967, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arden Hills, Minnesota 45.0721 -93.1670 matched with DB +City: Arden Hills, state: Minnesota, Lat: 45.0721, Lng: -93.167, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: College Place, Washington 46.0419 -118.3878 matched with DB +City: College Place, state: Washington, Lat: 46.0419, Lng: -118.3878, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madera Acres, California 37.0123 -120.0799 matched with DB +City: Madera Acres, state: California, Lat: 37.0123, Lng: -120.0799, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamosa, Colorado 37.4752 -105.8770 matched with DB +City: Alamosa, state: Colorado, Lat: 37.4752, Lng: -105.877, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln City, Oregon 44.9751 -124.0072 matched with DB +City: Lincoln City, state: Oregon, Lat: 44.9751, Lng: -124.0072, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon Park, Florida 27.5898 -81.5068 matched with DB +City: Avon Park, state: Florida, Lat: 27.5898, Lng: -81.5068, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chevy Chase, Maryland 38.9944 -77.0738 matched with DB +City: Chevy Chase, state: Maryland, Lat: 38.9944, Lng: -77.0738, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marathon, Florida 24.7263 -81.0374 matched with DB +City: Marathon, state: Florida, Lat: 24.7263, Lng: -81.0374, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay St. Louis, Mississippi 30.3281 -89.3774 matched with DB +City: Bay St. Louis, state: Mississippi, Lat: 30.3281, Lng: -89.3774, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly Hills, Florida 28.9176 -82.4542 matched with DB +City: Beverly Hills, state: Michigan, Lat: 42.522, Lng: -83.2423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Florida 28.9176 -82.4542 matched with DB +City: Beverly Hills, state: Florida, Lat: 28.9176, Lng: -82.4542, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Florida 28.9176 -82.4542 matched with DB +City: Beverly Hills, state: California, Lat: 34.0786, Lng: -118.4021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terrace Heights, Washington 46.6045 -120.4393 matched with DB +City: Terrace Heights, state: Washington, Lat: 46.6045, Lng: -120.4393, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Heath, Texas 32.8439 -96.4674 matched with DB +City: Heath, state: Ohio, Lat: 40.0241, Lng: -82.4413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Heath, Texas 32.8439 -96.4674 matched with DB +City: Heath, state: Texas, Lat: 32.8439, Lng: -96.4674, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stonegate, Colorado 39.5357 -104.8032 matched with DB +City: Stonegate, state: Colorado, Lat: 39.5357, Lng: -104.8032, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Maryland 39.4023 -76.7514 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keansburg, New Jersey 40.4469 -74.1315 matched with DB +City: Keansburg, state: New Jersey, Lat: 40.4469, Lng: -74.1315, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, North Carolina 35.5586 -77.0545 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Cove Springs, Florida 29.9904 -81.6807 matched with DB +City: Green Cove Springs, state: Florida, Lat: 29.9904, Lng: -81.6807, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fultondale, Alabama 33.6174 -86.8014 matched with DB +City: Fultondale, state: Alabama, Lat: 33.6174, Lng: -86.8014, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Croydon, Pennsylvania 40.0911 -74.8975 matched with DB +City: Croydon, state: Pennsylvania, Lat: 40.0911, Lng: -74.8975, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monmouth Junction, New Jersey 40.3754 -74.5582 matched with DB +City: Monmouth Junction, state: New Jersey, Lat: 40.3754, Lng: -74.5582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sedona, Arizona 34.8581 -111.7941 matched with DB +City: Sedona, state: Arizona, Lat: 34.8581, Lng: -111.7941, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Tennessee 35.5890 -89.2578 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Tennessee 35.5890 -89.2578 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Tennessee 35.5890 -89.2578 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle Point, Oregon 42.4677 -122.8016 matched with DB +City: Eagle Point, state: Oregon, Lat: 42.4677, Lng: -122.8016, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Minnesota 45.5612 -93.2283 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Minnesota 45.5612 -93.2283 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Minnesota 45.5612 -93.2283 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Minnesota 45.5612 -93.2283 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morrisville, Pennsylvania 40.2074 -74.7800 matched with DB +City: Morrisville, state: Pennsylvania, Lat: 40.2074, Lng: -74.78, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morrisville, Pennsylvania 40.2074 -74.7800 matched with DB +City: Morrisville, state: North Carolina, Lat: 35.8368, Lng: -78.8348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomaston, Georgia 32.8907 -84.3272 matched with DB +City: Thomaston, state: Georgia, Lat: 32.8907, Lng: -84.3272, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Indiana 40.8286 -84.9277 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Indiana 40.8286 -84.9277 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Indiana 40.8286 -84.9277 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Indiana 40.8286 -84.9277 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ingleside, Texas 27.8703 -97.2075 matched with DB +City: Ingleside, state: Texas, Lat: 27.8703, Lng: -97.2075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Lake Park, New Jersey 40.0017 -74.2595 matched with DB +City: Pine Lake Park, state: New Jersey, Lat: 40.0017, Lng: -74.2595, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, New York 42.4407 -79.3319 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentone, California 34.0609 -117.1108 matched with DB +City: Mentone, state: California, Lat: 34.0609, Lng: -117.1108, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvard, Illinois 42.4296 -88.6211 matched with DB +City: Harvard, state: Illinois, Lat: 42.4296, Lng: -88.6211, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Mohawk, New Jersey 41.0149 -74.6640 matched with DB +City: Lake Mohawk, state: New Jersey, Lat: 41.0149, Lng: -74.664, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flowery Branch, Georgia 34.1712 -83.9142 matched with DB +City: Flowery Branch, state: Georgia, Lat: 34.1712, Lng: -83.9142, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rolesville, North Carolina 35.9223 -78.4656 matched with DB +City: Rolesville, state: North Carolina, Lat: 35.9223, Lng: -78.4656, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cypress Gardens, Florida 28.0036 -81.6857 matched with DB +City: Cypress Gardens, state: Florida, Lat: 28.0036, Lng: -81.6857, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Horse, New Jersey 40.1919 -74.7023 matched with DB +City: White Horse, state: New Jersey, Lat: 40.1919, Lng: -74.7023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Club, California 37.9687 -121.3408 matched with DB +City: Country Club, state: California, Lat: 37.9687, Lng: -121.3408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Country Club, California 37.9687 -121.3408 matched with DB +City: Country Club, state: Florida, Lat: 25.9407, Lng: -80.3102, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eidson Road, Texas 28.6677 -100.4788 matched with DB +City: Eidson Road, state: Texas, Lat: 28.6677, Lng: -100.4788, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tanaina, Alaska 61.6576 -149.4263 matched with DB +City: Tanaina, state: Alaska, Lat: 61.6576, Lng: -149.4263, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunbury, Pennsylvania 40.8616 -76.7871 matched with DB +City: Sunbury, state: Pennsylvania, Lat: 40.8616, Lng: -76.7871, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hyrum, Utah 41.6325 -111.8445 matched with DB +City: Hyrum, state: Utah, Lat: 41.6325, Lng: -111.8445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canonsburg, Pennsylvania 40.2643 -80.1867 matched with DB +City: Canonsburg, state: Pennsylvania, Lat: 40.2643, Lng: -80.1867, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Airy, Maryland 39.3742 -77.1534 matched with DB +City: Mount Airy, state: Maryland, Lat: 39.3742, Lng: -77.1534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Airy, Maryland 39.3742 -77.1534 matched with DB +City: Mount Airy, state: North Carolina, Lat: 36.5083, Lng: -80.6155, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pike Road, Alabama 32.2939 -86.0900 matched with DB +City: Pike Road, state: Alabama, Lat: 32.2939, Lng: -86.09, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver City, New Mexico 32.7783 -108.2699 matched with DB +City: Silver City, state: New Mexico, Lat: 32.7783, Lng: -108.2699, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University of Virginia, Virginia 38.0405 -78.5164 matched with DB +City: University of Virginia, state: Virginia, Lat: 38.0405, Lng: -78.5164, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Countryside, Virginia 39.0518 -77.4124 matched with DB +City: Countryside, state: Virginia, Lat: 39.0518, Lng: -77.4124, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willow Street, Pennsylvania 39.9810 -76.2706 matched with DB +City: Willow Street, state: Pennsylvania, Lat: 39.981, Lng: -76.2706, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange Cove, California 36.6211 -119.3188 matched with DB +City: Orange Cove, state: California, Lat: 36.6211, Lng: -119.3188, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewer, Maine 44.7835 -68.7352 matched with DB +City: Brewer, state: Maine, Lat: 44.7835, Lng: -68.7352, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monett, Missouri 36.9218 -93.9278 matched with DB +City: Monett, state: Missouri, Lat: 36.9218, Lng: -93.9278, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morehead City, North Carolina 34.7308 -76.7388 matched with DB +City: Morehead City, state: North Carolina, Lat: 34.7308, Lng: -76.7388, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Itasca, Illinois 41.9772 -88.0183 matched with DB +City: Itasca, state: Illinois, Lat: 41.9772, Lng: -88.0183, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Stephens, North Carolina 35.7642 -81.2746 matched with DB +City: St. Stephens, state: North Carolina, Lat: 35.7642, Lng: -81.2746, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bastrop, Louisiana 32.7748 -91.9078 matched with DB +City: Bastrop, state: Louisiana, Lat: 32.7748, Lng: -91.9078, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bastrop, Louisiana 32.7748 -91.9078 matched with DB +City: Bastrop, state: Texas, Lat: 30.1113, Lng: -97.3176, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sturgeon Bay, Wisconsin 44.8228 -87.3660 matched with DB +City: Sturgeon Bay, state: Wisconsin, Lat: 44.8228, Lng: -87.366, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluefield, West Virginia 37.2608 -81.2143 matched with DB +City: Bluefield, state: West Virginia, Lat: 37.2608, Lng: -81.2143, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleton, Idaho 43.7113 -116.6157 matched with DB +City: Middleton, state: Wisconsin, Lat: 43.1064, Lng: -89.5059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middleton, Idaho 43.7113 -116.6157 matched with DB +City: Middleton, state: Idaho, Lat: 43.7113, Lng: -116.6157, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middleton, Idaho 43.7113 -116.6157 matched with DB +City: Middleton, state: Massachusetts, Lat: 42.6043, Lng: -71.0164, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, Georgia 33.9193 -84.5445 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Georgia 33.9193 -84.5445 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Georgia 33.9193 -84.5445 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy Hook, Connecticut 41.4128 -73.2440 matched with DB +City: Sandy Hook, state: Connecticut, Lat: 41.4128, Lng: -73.244, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North College Hill, Ohio 39.2175 -84.5520 matched with DB +City: North College Hill, state: Ohio, Lat: 39.2175, Lng: -84.552, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jessup, Maryland 39.1488 -76.7772 matched with DB +City: Jessup, state: Maryland, Lat: 39.1488, Lng: -76.7772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oil City, Pennsylvania 41.4281 -79.7036 matched with DB +City: Oil City, state: Pennsylvania, Lat: 41.4281, Lng: -79.7036, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartland, Wisconsin 43.1029 -88.3396 matched with DB +City: Hartland, state: Wisconsin, Lat: 43.1029, Lng: -88.3396, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Kentucky 38.2410 -85.5214 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manhattan, Illinois 41.4274 -87.9805 matched with DB +City: Manhattan, state: Kansas, Lat: 39.1886, Lng: -96.6048, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, Illinois 41.4274 -87.9805 matched with DB +City: Manhattan, state: Illinois, Lat: 41.4274, Lng: -87.9805, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, Illinois 41.4274 -87.9805 matched with DB +City: Manhattan, state: New York, Lat: 40.7834, Lng: -73.9662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacinto City, Texas 29.7663 -95.2410 matched with DB +City: Jacinto City, state: Texas, Lat: 29.7663, Lng: -95.241, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, New York 40.9986 -73.8189 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kensington, Connecticut 41.6284 -72.7686 matched with DB +City: Kensington, state: Connecticut, Lat: 41.6284, Lng: -72.7686, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Square, New York 41.1410 -74.0294 matched with DB +City: New Square, state: New York, Lat: 41.141, Lng: -74.0294, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bladensburg, Maryland 38.9424 -76.9264 matched with DB +City: Bladensburg, state: Maryland, Lat: 38.9424, Lng: -76.9264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, Mississippi 33.4492 -90.6447 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, Mississippi 33.4492 -90.6447 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aiea, Hawaii 21.3865 -157.9232 matched with DB +City: Aiea, state: Hawaii, Lat: 21.3865, Lng: -157.9232, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McKee City, New Jersey 39.4465 -74.6445 matched with DB +City: McKee City, state: New Jersey, Lat: 39.4465, Lng: -74.6445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Girard, Ohio 41.1665 -80.6963 matched with DB +City: Girard, state: Ohio, Lat: 41.1665, Lng: -80.6963, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Glens Falls, New York 43.3057 -73.6964 matched with DB +City: West Glens Falls, state: New York, Lat: 43.3057, Lng: -73.6964, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke, Texas 33.0144 -97.2276 matched with DB +City: Roanoke, state: Virginia, Lat: 37.2785, Lng: -79.9581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roanoke, Texas 33.0144 -97.2276 matched with DB +City: Roanoke, state: Texas, Lat: 33.0144, Lng: -97.2276, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parsons, Kansas 37.3405 -95.2958 matched with DB +City: Parsons, state: Kansas, Lat: 37.3405, Lng: -95.2958, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: LaSalle, Illinois 41.3589 -89.0737 matched with DB +City: LaSalle, state: Illinois, Lat: 41.3589, Lng: -89.0737, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lititz, Pennsylvania 40.1540 -76.3044 matched with DB +City: Lititz, state: Pennsylvania, Lat: 40.154, Lng: -76.3044, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rathdrum, Idaho 47.7948 -116.8944 matched with DB +City: Rathdrum, state: Idaho, Lat: 47.7948, Lng: -116.8944, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Castle, Florida 28.4651 -81.3741 matched with DB +City: Pine Castle, state: Florida, Lat: 28.4651, Lng: -81.3741, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Village, Ohio 39.9532 -83.1314 matched with DB +City: Lincoln Village, state: Ohio, Lat: 39.9532, Lng: -83.1314, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Grove, Alabama 33.4940 -86.9782 matched with DB +City: Pleasant Grove, state: Alabama, Lat: 33.494, Lng: -86.9782, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Grove, Alabama 33.4940 -86.9782 matched with DB +City: Pleasant Grove, state: Utah, Lat: 40.3716, Lng: -111.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boulder Hill, Illinois 41.7113 -88.3353 matched with DB +City: Boulder Hill, state: Illinois, Lat: 41.7113, Lng: -88.3353, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matawan, New Jersey 40.4127 -74.2365 matched with DB +City: Matawan, state: New Jersey, Lat: 40.4127, Lng: -74.2365, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mahomet, Illinois 40.1888 -88.3901 matched with DB +City: Mahomet, state: Illinois, Lat: 40.1888, Lng: -88.3901, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Arkansas 35.2134 -94.2408 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Arkansas 35.2134 -94.2408 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Arkansas 35.2134 -94.2408 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Arkansas 35.2134 -94.2408 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsborough, North Carolina 36.0679 -79.0991 matched with DB +City: Hillsborough, state: North Carolina, Lat: 36.0679, Lng: -79.0991, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, North Carolina 36.0679 -79.0991 matched with DB +City: Hillsborough, state: California, Lat: 37.5572, Lng: -122.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, North Carolina 36.0679 -79.0991 matched with DB +City: Hillsborough, state: New Jersey, Lat: 40.4985, Lng: -74.674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hillsborough, North Carolina 36.0679 -79.0991 matched with DB +City: Hillsborough, state: New Jersey, Lat: 40.5069, Lng: -74.6523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bohemia, New York 40.7717 -73.1271 matched with DB +City: Bohemia, state: New York, Lat: 40.7717, Lng: -73.1271, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridianville, Alabama 34.8729 -86.5722 matched with DB +City: Meridianville, state: Alabama, Lat: 34.8729, Lng: -86.5722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tomah, Wisconsin 43.9879 -90.4999 matched with DB +City: Tomah, state: Wisconsin, Lat: 43.9879, Lng: -90.4999, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.2010 -76.7289 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mooresville, Indiana 39.6022 -86.3681 matched with DB +City: Mooresville, state: Indiana, Lat: 39.6022, Lng: -86.3681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mooresville, Indiana 39.6022 -86.3681 matched with DB +City: Mooresville, state: North Carolina, Lat: 35.5847, Lng: -80.8266, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bargersville, Indiana 39.5412 -86.2004 matched with DB +City: Bargersville, state: Indiana, Lat: 39.5412, Lng: -86.2004, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Tennessee 35.9815 -87.1291 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Steger, Illinois 41.4723 -87.6176 matched with DB +City: Steger, state: Illinois, Lat: 41.4723, Lng: -87.6176, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grinnell, Iowa 41.7359 -92.7244 matched with DB +City: Grinnell, state: Iowa, Lat: 41.7359, Lng: -92.7244, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amityville, New York 40.6696 -73.4156 matched with DB +City: Amityville, state: New York, Lat: 40.6696, Lng: -73.4156, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickam Housing, Hawaii 21.3311 -157.9474 matched with DB +City: Hickam Housing, state: Hawaii, Lat: 21.3311, Lng: -157.9474, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Ohio 40.8370 -81.2643 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Ohio 40.8370 -81.2643 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Ohio 40.8370 -81.2643 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iowa Colony, Texas 29.4407 -95.4206 matched with DB +City: Iowa Colony, state: Texas, Lat: 29.4407, Lng: -95.4206, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Ohio 39.7202 -84.1734 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, New Hampshire 44.4869 -71.2599 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pryor Creek, Oklahoma 36.2996 -95.3107 matched with DB +City: Pryor Creek, state: Oklahoma, Lat: 36.2996, Lng: -95.3107, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Village, Oklahoma 35.5706 -97.5567 matched with DB +City: The Village, state: Oklahoma, Lat: 35.5706, Lng: -97.5567, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia City, Indiana 41.1612 -85.4855 matched with DB +City: Columbia City, state: Indiana, Lat: 41.1612, Lng: -85.4855, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Iowa 41.0064 -91.9667 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Iowa 41.0064 -91.9667 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Iowa 41.0064 -91.9667 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Iowa 41.0064 -91.9667 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena-West Helena, Arkansas 34.5313 -90.6201 matched with DB +City: Helena-West Helena, state: Arkansas, Lat: 34.5313, Lng: -90.6201, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Utah 40.0539 -111.6718 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Utah 40.0539 -111.6718 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Utah 40.0539 -111.6718 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Utah 40.0539 -111.6718 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Utah 40.0539 -111.6718 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Utah 40.0539 -111.6718 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodfield, South Carolina 34.0587 -80.9309 matched with DB +City: Woodfield, state: South Carolina, Lat: 34.0587, Lng: -80.9309, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridge City, Texas 30.0298 -93.8406 matched with DB +City: Bridge City, state: Texas, Lat: 30.0298, Lng: -93.8406, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Arkansas 35.4570 -93.4803 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Arkansas 35.4570 -93.4803 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Arkansas 35.4570 -93.4803 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Tennessee 35.1898 -86.1075 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Tennessee 35.1898 -86.1075 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Tennessee 35.1898 -86.1075 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Tennessee 35.1898 -86.1075 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Tennessee 35.1898 -86.1075 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eunice, Louisiana 30.4904 -92.4191 matched with DB +City: Eunice, state: Louisiana, Lat: 30.4904, Lng: -92.4191, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Michigan 43.3799 -84.6556 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anaconda, Montana 46.0608 -113.0678 matched with DB +City: Anaconda, state: Montana, Lat: 46.0608, Lng: -113.0678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madeira, Ohio 39.1856 -84.3734 matched with DB +City: Madeira, state: Ohio, Lat: 39.1856, Lng: -84.3734, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lugoff, South Carolina 34.2113 -80.6973 matched with DB +City: Lugoff, state: South Carolina, Lat: 34.2113, Lng: -80.6973, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fishersville, Virginia 38.1050 -78.9826 matched with DB +City: Fishersville, state: Virginia, Lat: 38.105, Lng: -78.9826, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenshaw, Pennsylvania 40.5391 -79.9735 matched with DB +City: Glenshaw, state: Pennsylvania, Lat: 40.5391, Lng: -79.9735, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochelle, Illinois 41.9197 -89.0629 matched with DB +City: Rochelle, state: Illinois, Lat: 41.9197, Lng: -89.0629, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coral Hills, Maryland 38.8706 -76.9215 matched with DB +City: Coral Hills, state: Maryland, Lat: 38.8706, Lng: -76.9215, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flossmoor, Illinois 41.5391 -87.6858 matched with DB +City: Flossmoor, state: Illinois, Lat: 41.5391, Lng: -87.6858, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsburg, Pennsylvania 40.2115 -77.0060 matched with DB +City: Mechanicsburg, state: Pennsylvania, Lat: 40.2115, Lng: -77.006, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cusseta, Georgia 32.3470 -84.7870 matched with DB +City: Cusseta, state: Georgia, Lat: 32.347, Lng: -84.787, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodway, Texas 31.4988 -97.2314 matched with DB +City: Woodway, state: Texas, Lat: 31.4988, Lng: -97.2314, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denham Springs, Louisiana 30.4743 -90.9593 matched with DB +City: Denham Springs, state: Louisiana, Lat: 30.4743, Lng: -90.9593, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, Connecticut 41.5893 -73.0905 matched with DB +City: Oakville, state: Connecticut, Lat: 41.5893, Lng: -73.0905, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakville, Connecticut 41.5893 -73.0905 matched with DB +City: Oakville, state: Missouri, Lat: 38.4479, Lng: -90.3199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Oregon 43.9916 -124.1063 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Oregon 43.9916 -124.1063 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Oregon 43.9916 -124.1063 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Oregon 43.9916 -124.1063 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Oregon 43.9916 -124.1063 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Oregon 43.9916 -124.1063 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middlesborough, Kentucky 36.6127 -83.7227 matched with DB +City: Middlesborough, state: Kentucky, Lat: 36.6127, Lng: -83.7227, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, New Jersey 39.8782 -75.0085 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, New Jersey 39.8782 -75.0085 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, New Jersey 39.8782 -75.0085 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, New Jersey 39.8782 -75.0085 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, New Jersey 39.8782 -75.0085 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, New Jersey 39.8782 -75.0085 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena Valley Southeast, Montana 46.6219 -111.8973 matched with DB +City: Helena Valley Southeast, state: Montana, Lat: 46.6219, Lng: -111.8973, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Locust Grove, Georgia 33.3446 -84.1071 matched with DB +City: Locust Grove, state: Georgia, Lat: 33.3446, Lng: -84.1071, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort Square, Illinois 41.5219 -87.8031 matched with DB +City: Frankfort Square, state: Illinois, Lat: 41.5219, Lng: -87.8031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Washington 48.4676 -122.3298 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Diamondhead, Mississippi 30.3791 -89.3707 matched with DB +City: Diamondhead, state: Mississippi, Lat: 30.3791, Lng: -89.3707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southside, Alabama 33.9007 -86.0238 matched with DB +City: Southside, state: Alabama, Lat: 33.9007, Lng: -86.0238, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canal Winchester, Ohio 39.8437 -82.8126 matched with DB +City: Canal Winchester, state: Ohio, Lat: 39.8437, Lng: -82.8126, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Pennsylvania 41.8434 -79.1444 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Pennsylvania 41.8434 -79.1444 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Pennsylvania 41.8434 -79.1444 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Pennsylvania 41.8434 -79.1444 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Pennsylvania 41.8434 -79.1444 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Stroudsburg, Pennsylvania 41.0023 -75.1779 matched with DB +City: East Stroudsburg, state: Pennsylvania, Lat: 41.0023, Lng: -75.1779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadowbrook, Alabama 33.3935 -86.7041 matched with DB +City: Meadowbrook, state: Virginia, Lat: 37.4301, Lng: -77.474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meadowbrook, Alabama 33.3935 -86.7041 matched with DB +City: Meadowbrook, state: Alabama, Lat: 33.3935, Lng: -86.7041, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Amboy, New Jersey 40.4852 -74.2831 matched with DB +City: South Amboy, state: New Jersey, Lat: 40.4852, Lng: -74.2831, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestline, California 34.2486 -117.2887 matched with DB +City: Crestline, state: California, Lat: 34.2486, Lng: -117.2887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charter Oak, California 34.1025 -117.8564 matched with DB +City: Charter Oak, state: California, Lat: 34.1025, Lng: -117.8564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rodeo, California 38.0367 -122.2526 matched with DB +City: Rodeo, state: California, Lat: 38.0367, Lng: -122.2526, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Anthony, Minnesota 45.0278 -93.2174 matched with DB +City: St. Anthony, state: Minnesota, Lat: 45.0278, Lng: -93.2174, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Havre, Montana 48.5427 -109.6804 matched with DB +City: Havre, state: Montana, Lat: 48.5427, Lng: -109.6804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield, Alabama 34.7570 -87.6977 matched with DB +City: Sheffield, state: Alabama, Lat: 34.757, Lng: -87.6977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Stewart, Georgia 31.8811 -81.6131 matched with DB +City: Fort Stewart, state: Georgia, Lat: 31.8811, Lng: -81.6131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bull Mountain, Oregon 45.4125 -122.8320 matched with DB +City: Bull Mountain, state: Oregon, Lat: 45.4125, Lng: -122.832, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Angola, Indiana 41.6433 -85.0050 matched with DB +City: Angola, state: Indiana, Lat: 41.6433, Lng: -85.005, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Utah 41.1732 -112.0023 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Utah 41.1732 -112.0023 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Utah 41.1732 -112.0023 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quakertown, Pennsylvania 40.4398 -75.3455 matched with DB +City: Quakertown, state: Pennsylvania, Lat: 40.4398, Lng: -75.3455, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Franklin, New Jersey 40.4933 -74.4710 matched with DB +City: East Franklin, state: New Jersey, Lat: 40.4933, Lng: -74.471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Michigan 42.3718 -83.4680 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Michigan 42.3718 -83.4680 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Michigan 42.3718 -83.4680 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Michigan 42.3718 -83.4680 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Michigan 42.3718 -83.4680 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Michigan 42.3718 -83.4680 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ecorse, Michigan 42.2489 -83.1399 matched with DB +City: Ecorse, state: Michigan, Lat: 42.2489, Lng: -83.1399, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Skidaway Island, Georgia 31.9372 -81.0449 matched with DB +City: Skidaway Island, state: Georgia, Lat: 31.9372, Lng: -81.0449, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Francis, Wisconsin 42.9716 -87.8730 matched with DB +City: St. Francis, state: Wisconsin, Lat: 42.9716, Lng: -87.873, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bernalillo, New Mexico 35.3127 -106.5537 matched with DB +City: Bernalillo, state: New Mexico, Lat: 35.3127, Lng: -106.5537, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ventnor City, New Jersey 39.3457 -74.4860 matched with DB +City: Ventnor City, state: New Jersey, Lat: 39.3457, Lng: -74.486, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethalto, Illinois 38.9015 -90.0466 matched with DB +City: Bethalto, state: Illinois, Lat: 38.9015, Lng: -90.0466, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurens, South Carolina 34.5022 -82.0207 matched with DB +City: Laurens, state: South Carolina, Lat: 34.5022, Lng: -82.0207, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlotte, Michigan 42.5662 -84.8304 matched with DB +City: Charlotte, state: Michigan, Lat: 42.5662, Lng: -84.8304, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charlotte, Michigan 42.5662 -84.8304 matched with DB +City: Charlotte, state: North Carolina, Lat: 35.2083, Lng: -80.8303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leonia, New Jersey 40.8638 -73.9900 matched with DB +City: Leonia, state: New Jersey, Lat: 40.8638, Lng: -73.99, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mound, Minnesota 44.9328 -93.6591 matched with DB +City: Mound, state: Minnesota, Lat: 44.9328, Lng: -93.6591, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wasilla, Alaska 61.5770 -149.4660 matched with DB +City: Wasilla, state: Alaska, Lat: 61.577, Lng: -149.466, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrill, Wisconsin 45.1820 -89.6994 matched with DB +City: Merrill, state: Wisconsin, Lat: 45.182, Lng: -89.6994, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Picture Rocks, Arizona 32.3274 -111.2558 matched with DB +City: Picture Rocks, state: Arizona, Lat: 32.3274, Lng: -111.2558, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield Glade, Tennessee 36.0028 -84.8711 matched with DB +City: Fairfield Glade, state: Tennessee, Lat: 36.0028, Lng: -84.8711, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, West Virginia 39.3036 -80.2478 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, West Virginia 39.3036 -80.2478 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansdowne, Maryland 39.2365 -76.6659 matched with DB +City: Lansdowne, state: Pennsylvania, Lat: 39.9408, Lng: -75.276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansdowne, Maryland 39.2365 -76.6659 matched with DB +City: Lansdowne, state: Maryland, Lat: 39.2365, Lng: -76.6659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansdowne, Maryland 39.2365 -76.6659 matched with DB +City: Lansdowne, state: Virginia, Lat: 39.0844, Lng: -77.4839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Kansas 37.6955 -96.9919 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Kansas 37.6955 -96.9919 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Kansas 37.6955 -96.9919 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rensselaer, New York 42.6465 -73.7328 matched with DB +City: Rensselaer, state: New York, Lat: 42.6465, Lng: -73.7328, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugar Grove, Illinois 41.7759 -88.4481 matched with DB +City: Sugar Grove, state: Illinois, Lat: 41.7759, Lng: -88.4481, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magalia, California 39.8228 -121.6078 matched with DB +City: Magalia, state: California, Lat: 39.8228, Lng: -121.6078, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haiku-Pauwela, Hawaii 20.9156 -156.3022 matched with DB +City: Haiku-Pauwela, state: Hawaii, Lat: 20.9156, Lng: -156.3022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallon, Nevada 39.4737 -118.7779 matched with DB +City: Fallon, state: Nevada, Lat: 39.4737, Lng: -118.7779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hailey, Idaho 43.5141 -114.3001 matched with DB +City: Hailey, state: Idaho, Lat: 43.5141, Lng: -114.3001, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Illinois 41.8310 -87.8169 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Illinois 41.8310 -87.8169 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Illinois 41.8310 -87.8169 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Illinois 41.8310 -87.8169 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Meadow Lake, New Jersey 40.9241 -74.5107 matched with DB +City: White Meadow Lake, state: New Jersey, Lat: 40.9241, Lng: -74.5107, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington Terrace, Utah 41.1683 -111.9783 matched with DB +City: Washington Terrace, state: Utah, Lat: 41.1683, Lng: -111.9783, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Iowa 40.9625 -91.5452 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Iowa 40.9625 -91.5452 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Iowa 40.9625 -91.5452 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Iowa 40.9625 -91.5452 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Iowa 40.9625 -91.5452 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Iowa 40.9625 -91.5452 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shawano, Wisconsin 44.7748 -88.5843 matched with DB +City: Shawano, state: Wisconsin, Lat: 44.7748, Lng: -88.5843, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cape St. Claire, Maryland 39.0433 -76.4471 matched with DB +City: Cape St. Claire, state: Maryland, Lat: 39.0433, Lng: -76.4471, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waseca, Minnesota 44.0827 -93.5029 matched with DB +City: Waseca, state: Minnesota, Lat: 44.0827, Lng: -93.5029, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Beach, Florida 26.6945 -80.0408 matched with DB +City: Palm Beach, state: Florida, Lat: 26.6945, Lng: -80.0408, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aliquippa, Pennsylvania 40.6155 -80.2547 matched with DB +City: Aliquippa, state: Pennsylvania, Lat: 40.6155, Lng: -80.2547, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Panthersville, Georgia 33.7059 -84.2763 matched with DB +City: Panthersville, state: Georgia, Lat: 33.7059, Lng: -84.2763, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond Heights, Missouri 38.6309 -90.3332 matched with DB +City: Richmond Heights, state: Ohio, Lat: 41.5589, Lng: -81.5029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond Heights, Missouri 38.6309 -90.3332 matched with DB +City: Richmond Heights, state: Missouri, Lat: 38.6309, Lng: -90.3332, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond Heights, Missouri 38.6309 -90.3332 matched with DB +City: Richmond Heights, state: Florida, Lat: 25.6347, Lng: -80.3721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conshohocken, Pennsylvania 40.0772 -75.3034 matched with DB +City: Conshohocken, state: Pennsylvania, Lat: 40.0772, Lng: -75.3034, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grants, New Mexico 35.1538 -107.8335 matched with DB +City: Grants, state: New Mexico, Lat: 35.1538, Lng: -107.8335, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ahuimanu, Hawaii 21.4379 -157.8404 matched with DB +City: Ahuimanu, state: Hawaii, Lat: 21.4379, Lng: -157.8404, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willowbrook, Illinois 41.7641 -87.9454 matched with DB +City: Willowbrook, state: Illinois, Lat: 41.7641, Lng: -87.9454, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Willowbrook, Illinois 41.7641 -87.9454 matched with DB +City: Willowbrook, state: California, Lat: 33.9209, Lng: -118.2356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ivins, Utah 37.1742 -113.6809 matched with DB +City: Ivins, state: Utah, Lat: 37.1742, Lng: -113.6809, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockingham, North Carolina 34.9386 -79.7608 matched with DB +City: Rockingham, state: North Carolina, Lat: 34.9386, Lng: -79.7608, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuskegee, Alabama 32.4409 -85.7131 matched with DB +City: Tuskegee, state: Alabama, Lat: 32.4409, Lng: -85.7131, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, New York 40.8176 -73.4703 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New York 40.8176 -73.4703 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New York 40.8176 -73.4703 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, New York 40.8176 -73.4703 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterford, California 37.6429 -120.7553 matched with DB +City: Waterford, state: California, Lat: 37.6429, Lng: -120.7553, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterford, California 37.6429 -120.7553 matched with DB +City: Waterford, state: New Jersey, Lat: 39.7415, Lng: -74.8207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Micco, Florida 27.8683 -80.5100 matched with DB +City: Micco, state: Florida, Lat: 27.8683, Lng: -80.51, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flanders, New Jersey 40.8412 -74.7102 matched with DB +City: Flanders, state: New Jersey, Lat: 40.8412, Lng: -74.7102, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Incline Village, Nevada 39.2639 -119.9455 matched with DB +City: Incline Village, state: Nevada, Lat: 39.2639, Lng: -119.9455, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springs, New York 41.0212 -72.1584 matched with DB +City: Springs, state: New York, Lat: 41.0212, Lng: -72.1584, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seven Corners, Virginia 38.8658 -77.1445 matched with DB +City: Seven Corners, state: Virginia, Lat: 38.8658, Lng: -77.1445, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Audubon, Pennsylvania 40.1304 -75.4280 matched with DB +City: Audubon, state: New Jersey, Lat: 39.8906, Lng: -75.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Audubon, Pennsylvania 40.1304 -75.4280 matched with DB +City: Audubon, state: Pennsylvania, Lat: 40.1304, Lng: -75.428, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helotes, Texas 29.5687 -98.6960 matched with DB +City: Helotes, state: Texas, Lat: 29.5687, Lng: -98.696, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Des Peres, Missouri 38.5973 -90.4480 matched with DB +City: Des Peres, state: Missouri, Lat: 38.5973, Lng: -90.448, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Tennessee 35.2256 -89.5372 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Tennessee 35.2256 -89.5372 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Tennessee 35.2256 -89.5372 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestdale, Alabama 33.5737 -86.9000 matched with DB +City: Forestdale, state: Alabama, Lat: 33.5737, Lng: -86.9, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Colorado 38.7560 -108.0772 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, New Jersey 39.4929 -74.4801 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, New Jersey 39.4929 -74.4801 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Athens, California 33.9235 -118.3033 matched with DB +City: West Athens, state: California, Lat: 33.9235, Lng: -118.3033, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perkasie, Pennsylvania 40.3720 -75.2920 matched with DB +City: Perkasie, state: Pennsylvania, Lat: 40.372, Lng: -75.292, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elsmere, Kentucky 38.9948 -84.6017 matched with DB +City: Elsmere, state: Kentucky, Lat: 38.9948, Lng: -84.6017, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlboro Village, Maryland 38.8307 -76.7699 matched with DB +City: Marlboro Village, state: Maryland, Lat: 38.8307, Lng: -76.7699, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temperance, Michigan 41.7653 -83.5755 matched with DB +City: Temperance, state: Michigan, Lat: 41.7653, Lng: -83.5755, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunset Hills, Missouri 38.5310 -90.4087 matched with DB +City: Sunset Hills, state: Missouri, Lat: 38.531, Lng: -90.4087, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Grand Forks, Minnesota 47.9286 -97.0138 matched with DB +City: East Grand Forks, state: Minnesota, Lat: 47.9286, Lng: -97.0138, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miramar Beach, Florida 30.3854 -86.3442 matched with DB +City: Miramar Beach, state: Florida, Lat: 30.3854, Lng: -86.3442, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tiburon, California 37.8854 -122.4637 matched with DB +City: Tiburon, state: California, Lat: 37.8854, Lng: -122.4637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawthorn Woods, Illinois 42.2313 -88.0624 matched with DB +City: Hawthorn Woods, state: Illinois, Lat: 42.2313, Lng: -88.0624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairless Hills, Pennsylvania 40.1783 -74.8524 matched with DB +City: Fairless Hills, state: Pennsylvania, Lat: 40.1783, Lng: -74.8524, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cresskill, New Jersey 40.9405 -73.9596 matched with DB +City: Cresskill, state: New Jersey, Lat: 40.9405, Lng: -73.9596, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McFarland, Wisconsin 43.0203 -89.2828 matched with DB +City: McFarland, state: Wisconsin, Lat: 43.0203, Lng: -89.2828, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: McFarland, Wisconsin 43.0203 -89.2828 matched with DB +City: McFarland, state: California, Lat: 35.6781, Lng: -119.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Missouri 39.7444 -94.2329 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton Harbor, Michigan 42.1159 -86.4488 matched with DB +City: Benton Harbor, state: Michigan, Lat: 42.1159, Lng: -86.4488, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orosi, California 36.5433 -119.2914 matched with DB +City: Orosi, state: California, Lat: 36.5433, Lng: -119.2914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Ridge, New Jersey 41.0352 -74.0423 matched with DB +City: Park Ridge, state: New Jersey, Lat: 41.0352, Lng: -74.0423, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Park Ridge, New Jersey 41.0352 -74.0423 matched with DB +City: Park Ridge, state: Illinois, Lat: 42.0125, Lng: -87.8436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McCordsville, Indiana 39.8966 -85.9208 matched with DB +City: McCordsville, state: Indiana, Lat: 39.8966, Lng: -85.9208, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Connecticut 41.0318 -73.5827 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Connecticut 41.0318 -73.5827 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Connecticut 41.0318 -73.5827 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Connecticut 41.0318 -73.5827 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chillicothe, Missouri 39.7953 -93.5499 matched with DB +City: Chillicothe, state: Missouri, Lat: 39.7953, Lng: -93.5499, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chillicothe, Missouri 39.7953 -93.5499 matched with DB +City: Chillicothe, state: Ohio, Lat: 39.3393, Lng: -82.9939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntertown, Indiana 41.2185 -85.1705 matched with DB +City: Huntertown, state: Indiana, Lat: 41.2185, Lng: -85.1705, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: August, California 37.9797 -121.2625 matched with DB +City: August, state: California, Lat: 37.9797, Lng: -121.2625, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynwood, Illinois 41.5235 -87.5510 matched with DB +City: Lynwood, state: Illinois, Lat: 41.5235, Lng: -87.551, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lynwood, Illinois 41.5235 -87.5510 matched with DB +City: Lynwood, state: California, Lat: 33.924, Lng: -118.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Absecon, New Jersey 39.4229 -74.4944 matched with DB +City: Absecon, state: New Jersey, Lat: 39.4229, Lng: -74.4944, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beecher, Michigan 43.0903 -83.7039 matched with DB +City: Beecher, state: Michigan, Lat: 43.0903, Lng: -83.7039, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Falls, Minnesota 45.9862 -94.3586 matched with DB +City: Little Falls, state: Minnesota, Lat: 45.9862, Lng: -94.3586, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Little Falls, Minnesota 45.9862 -94.3586 matched with DB +City: Little Falls, state: New Jersey, Lat: 40.8762, Lng: -74.2181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Washington 47.1734 -122.4120 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Washington 47.1734 -122.4120 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Washington 47.1734 -122.4120 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hooper, Utah 41.1599 -112.2871 matched with DB +City: Hooper, state: Utah, Lat: 41.1599, Lng: -112.2871, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commerce, Texas 33.2421 -95.8992 matched with DB +City: Commerce, state: California, Lat: 33.9963, Lng: -118.1519, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Commerce, Texas 33.2421 -95.8992 matched with DB +City: Commerce, state: Texas, Lat: 33.2421, Lng: -95.8992, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, New York 43.0418 -77.0930 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New York 43.0418 -77.0930 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New York 43.0418 -77.0930 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New York 43.0418 -77.0930 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, New York 43.0418 -77.0930 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Hills, Oregon 45.5047 -122.8053 matched with DB +City: Cedar Hills, state: Utah, Lat: 40.4135, Lng: -111.7531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cedar Hills, Oregon 45.5047 -122.8053 matched with DB +City: Cedar Hills, state: Oregon, Lat: 45.5047, Lng: -122.8053, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Cottage, New York 41.1162 -73.9433 matched with DB +City: Valley Cottage, state: New York, Lat: 41.1162, Lng: -73.9433, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrodsburg, Kentucky 37.7654 -84.8474 matched with DB +City: Harrodsburg, state: Kentucky, Lat: 37.7654, Lng: -84.8474, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Club Estates, Georgia 31.2113 -81.4622 matched with DB +City: Country Club Estates, state: Georgia, Lat: 31.2113, Lng: -81.4622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roxborough Park, Colorado 39.4492 -105.0746 matched with DB +City: Roxborough Park, state: Colorado, Lat: 39.4492, Lng: -105.0746, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toccoa, Georgia 34.5810 -83.3263 matched with DB +City: Toccoa, state: Georgia, Lat: 34.581, Lng: -83.3263, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northwest Harborcreek, Pennsylvania 42.1494 -79.9945 matched with DB +City: Northwest Harborcreek, state: Pennsylvania, Lat: 42.1494, Lng: -79.9945, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bemiss, Georgia 30.9318 -83.2386 matched with DB +City: Bemiss, state: Georgia, Lat: 30.9318, Lng: -83.2386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange Park, Florida 30.1706 -81.7041 matched with DB +City: Orange Park, state: Florida, Lat: 30.1706, Lng: -81.7041, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harahan, Louisiana 29.9374 -90.2031 matched with DB +City: Harahan, state: Louisiana, Lat: 29.9374, Lng: -90.2031, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanger, Texas 33.3715 -97.1678 matched with DB +City: Sanger, state: California, Lat: 36.699, Lng: -119.5575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanger, Texas 33.3715 -97.1678 matched with DB +City: Sanger, state: Texas, Lat: 33.3715, Lng: -97.1678, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Travis Ranch, Texas 32.8015 -96.4775 matched with DB +City: Travis Ranch, state: Texas, Lat: 32.8015, Lng: -96.4775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Breinigsville, Pennsylvania 40.5394 -75.6347 matched with DB +City: Breinigsville, state: Pennsylvania, Lat: 40.5394, Lng: -75.6347, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lapeer, Michigan 43.0447 -83.3253 matched with DB +City: Lapeer, state: Michigan, Lat: 43.0447, Lng: -83.3253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Merritt Island, Florida 28.4585 -80.7162 matched with DB +City: North Merritt Island, state: Florida, Lat: 28.4585, Lng: -80.7162, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Park, Michigan 42.4052 -83.0977 matched with DB +City: Highland Park, state: New Jersey, Lat: 40.5006, Lng: -74.4283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Michigan 42.4052 -83.0977 matched with DB +City: Highland Park, state: Michigan, Lat: 42.4052, Lng: -83.0977, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Michigan 42.4052 -83.0977 matched with DB +City: Highland Park, state: Illinois, Lat: 42.1823, Lng: -87.8104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Michigan 42.4052 -83.0977 matched with DB +City: Highland Park, state: Texas, Lat: 32.8311, Lng: -96.8012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuscumbia, Alabama 34.7204 -87.7035 matched with DB +City: Tuscumbia, state: Alabama, Lat: 34.7204, Lng: -87.7035, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Booneville, Mississippi 34.6643 -88.5684 matched with DB +City: Booneville, state: Mississippi, Lat: 34.6643, Lng: -88.5684, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Michigan 42.3031 -85.6286 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Michigan 42.3031 -85.6286 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Michigan 42.3031 -85.6286 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bala Cynwyd, Pennsylvania 40.0116 -75.2283 matched with DB +City: Bala Cynwyd, state: Pennsylvania, Lat: 40.0116, Lng: -75.2283, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gretna, Nebraska 41.1314 -96.2450 matched with DB +City: Gretna, state: Nebraska, Lat: 41.1314, Lng: -96.245, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gretna, Nebraska 41.1314 -96.2450 matched with DB +City: Gretna, state: Louisiana, Lat: 29.9101, Lng: -90.0515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Craig, Colorado 40.5171 -107.5554 matched with DB +City: Craig, state: Colorado, Lat: 40.5171, Lng: -107.5554, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blacklick Estates, Ohio 39.9049 -82.8655 matched with DB +City: Blacklick Estates, state: Ohio, Lat: 39.9049, Lng: -82.8655, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Derby, Colorado 39.8400 -104.9172 matched with DB +City: Derby, state: Connecticut, Lat: 41.3265, Lng: -73.0833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Colorado 39.8400 -104.9172 matched with DB +City: Derby, state: Kansas, Lat: 37.5571, Lng: -97.2551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Colorado 39.8400 -104.9172 matched with DB +City: Derby, state: Colorado, Lat: 39.84, Lng: -104.9172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio del Mar, California 36.9607 -121.8807 matched with DB +City: Rio del Mar, state: California, Lat: 36.9607, Lng: -121.8807, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lago Vista, Texas 30.4519 -97.9908 matched with DB +City: Lago Vista, state: Texas, Lat: 30.4519, Lng: -97.9908, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Park, Florida 26.7998 -80.0681 matched with DB +City: Lake Park, state: Florida, Lat: 26.7998, Lng: -80.0681, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glens Falls North, New York 43.3350 -73.6832 matched with DB +City: Glens Falls North, state: New York, Lat: 43.335, Lng: -73.6832, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olney, Illinois 38.7285 -88.0839 matched with DB +City: Olney, state: Maryland, Lat: 39.1465, Lng: -77.0715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Olney, Illinois 38.7285 -88.0839 matched with DB +City: Olney, state: Illinois, Lat: 38.7285, Lng: -88.0839, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harleysville, Pennsylvania 40.2792 -75.3873 matched with DB +City: Harleysville, state: Pennsylvania, Lat: 40.2792, Lng: -75.3873, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rice Lake, Wisconsin 45.4864 -91.7447 matched with DB +City: Rice Lake, state: Wisconsin, Lat: 45.4864, Lng: -91.7447, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Virginia 37.0528 -80.7624 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooksville, Florida 28.5404 -82.3903 matched with DB +City: Brooksville, state: Florida, Lat: 28.5404, Lng: -82.3903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leisure World, Maryland 39.1023 -77.0689 matched with DB +City: Leisure World, state: Maryland, Lat: 39.1023, Lng: -77.0689, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saline, Michigan 42.1740 -83.7780 matched with DB +City: Saline, state: Michigan, Lat: 42.174, Lng: -83.778, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fitzgerald, Georgia 31.7134 -83.2514 matched with DB +City: Fitzgerald, state: Georgia, Lat: 31.7134, Lng: -83.2514, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, Colorado 39.6349 -105.3356 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, Colorado 39.6349 -105.3356 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Irwin, California 35.2477 -116.6834 matched with DB +City: Fort Irwin, state: California, Lat: 35.2477, Lng: -116.6834, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverdale, California 38.7962 -123.0152 matched with DB +City: Cloverdale, state: California, Lat: 38.7962, Lng: -123.0152, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainedge, New York 40.7241 -73.4770 matched with DB +City: Plainedge, state: New York, Lat: 40.7241, Lng: -73.477, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Forest Village, Pennsylvania 40.7996 -77.9084 matched with DB +City: Park Forest Village, state: Pennsylvania, Lat: 40.7996, Lng: -77.9084, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield Lake, Ohio 41.4883 -82.0979 matched with DB +City: Sheffield Lake, state: Ohio, Lat: 41.4883, Lng: -82.0979, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Minnesota 45.3409 -93.3264 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Minnesota 45.3409 -93.3264 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Minnesota 45.3409 -93.3264 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Tennessee 36.5793 -82.5096 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Tennessee 36.5793 -82.5096 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Tennessee 36.5793 -82.5096 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haledon, New Jersey 40.9363 -74.1887 matched with DB +City: Haledon, state: New Jersey, Lat: 40.9363, Lng: -74.1887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indian Harbour Beach, Florida 28.1529 -80.5976 matched with DB +City: Indian Harbour Beach, state: Florida, Lat: 28.1529, Lng: -80.5976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winslow, Arizona 35.0243 -110.7095 matched with DB +City: Winslow, state: Arizona, Lat: 35.0243, Lng: -110.7095, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winslow, Arizona 35.0243 -110.7095 matched with DB +City: Winslow, state: New Jersey, Lat: 39.7027, Lng: -74.9029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harwood Heights, Illinois 41.9663 -87.8057 matched with DB +City: Harwood Heights, state: Illinois, Lat: 41.9663, Lng: -87.8057, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bogota, New Jersey 40.8751 -74.0293 matched with DB +City: Bogota, state: New Jersey, Lat: 40.8751, Lng: -74.0293, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ladue, Missouri 38.6377 -90.3815 matched with DB +City: Ladue, state: Missouri, Lat: 38.6377, Lng: -90.3815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaver Falls, Pennsylvania 40.7619 -80.3226 matched with DB +City: Beaver Falls, state: Pennsylvania, Lat: 40.7619, Lng: -80.3226, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Purcellville, Virginia 39.1378 -77.7110 matched with DB +City: Purcellville, state: Virginia, Lat: 39.1378, Lng: -77.711, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewater, Maryland 38.9373 -76.5572 matched with DB +City: Edgewater, state: New Jersey, Lat: 40.8237, Lng: -73.974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Maryland 38.9373 -76.5572 matched with DB +City: Edgewater, state: Florida, Lat: 28.9594, Lng: -80.9406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Maryland 38.9373 -76.5572 matched with DB +City: Edgewater, state: Maryland, Lat: 38.9373, Lng: -76.5572, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, Arkansas 33.6682 -93.5895 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Village St. George, Louisiana 30.3598 -91.0672 matched with DB +City: Village St. George, state: Louisiana, Lat: 30.3598, Lng: -91.0672, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayport, New York 40.7461 -73.0546 matched with DB +City: Bayport, state: New York, Lat: 40.7461, Lng: -73.0546, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Lakes, Virginia 38.8530 -77.3885 matched with DB +City: Fair Lakes, state: Virginia, Lat: 38.853, Lng: -77.3885, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redlands, Colorado 39.0886 -108.6582 matched with DB +City: Redlands, state: Colorado, Lat: 39.0886, Lng: -108.6582, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Redlands, Colorado 39.0886 -108.6582 matched with DB +City: Redlands, state: California, Lat: 34.0512, Lng: -117.1712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownfield, Texas 33.1757 -102.2730 matched with DB +City: Brownfield, state: Texas, Lat: 33.1757, Lng: -102.273, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hernando, Florida 28.9451 -82.3781 matched with DB +City: Hernando, state: Florida, Lat: 28.9451, Lng: -82.3781, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hernando, Florida 28.9451 -82.3781 matched with DB +City: Hernando, state: Mississippi, Lat: 34.85, Lng: -89.9921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Litchfield Beach, South Carolina 33.4773 -79.1181 matched with DB +City: Litchfield Beach, state: South Carolina, Lat: 33.4773, Lng: -79.1181, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Missouri 38.3716 -93.7679 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Wisconsin 43.7447 -87.9660 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Wisconsin 43.7447 -87.9660 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Wisconsin 43.7447 -87.9660 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Wisconsin 43.7447 -87.9660 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Wisconsin 43.7447 -87.9660 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Wisconsin 43.7447 -87.9660 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Pete Beach, Florida 27.7235 -82.7387 matched with DB +City: St. Pete Beach, state: Florida, Lat: 27.7235, Lng: -82.7387, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Falls, Illinois 41.7724 -89.6928 matched with DB +City: Rock Falls, state: Illinois, Lat: 41.7724, Lng: -89.6928, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandpoint, Idaho 48.2822 -116.5614 matched with DB +City: Sandpoint, state: Idaho, Lat: 48.2822, Lng: -116.5614, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orting, Washington 47.0967 -122.2112 matched with DB +City: Orting, state: Washington, Lat: 47.0967, Lng: -122.2112, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caldwell, New Jersey 40.8389 -74.2776 matched with DB +City: Caldwell, state: New Jersey, Lat: 40.8389, Lng: -74.2776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Caldwell, New Jersey 40.8389 -74.2776 matched with DB +City: Caldwell, state: Idaho, Lat: 43.6453, Lng: -116.6594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crozet, Virginia 38.0645 -78.6961 matched with DB +City: Crozet, state: Virginia, Lat: 38.0645, Lng: -78.6961, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whippany, New Jersey 40.8233 -74.4184 matched with DB +City: Whippany, state: New Jersey, Lat: 40.8233, Lng: -74.4184, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Napoleon, Ohio 41.3977 -84.1244 matched with DB +City: Napoleon, state: Ohio, Lat: 41.3977, Lng: -84.1244, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgemere, Maryland 39.2273 -76.4590 matched with DB +City: Edgemere, state: Maryland, Lat: 39.2273, Lng: -76.459, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pomona, New Jersey 39.4688 -74.5502 matched with DB +City: Pomona, state: New Jersey, Lat: 39.4688, Lng: -74.5502, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pomona, New Jersey 39.4688 -74.5502 matched with DB +City: Pomona, state: California, Lat: 34.0585, Lng: -117.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kulpsville, Pennsylvania 40.2440 -75.3407 matched with DB +City: Kulpsville, state: Pennsylvania, Lat: 40.244, Lng: -75.3407, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thief River Falls, Minnesota 48.1108 -96.1778 matched with DB +City: Thief River Falls, state: Minnesota, Lat: 48.1108, Lng: -96.1778, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearsall, Texas 28.8915 -99.0975 matched with DB +City: Pearsall, state: Texas, Lat: 28.8915, Lng: -99.0975, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland Hill, Rhode Island 41.9736 -71.4605 matched with DB +City: Cumberland Hill, state: Rhode Island, Lat: 41.9736, Lng: -71.4605, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Michigan 43.1797 -85.2534 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collingdale, Pennsylvania 39.9151 -75.2776 matched with DB +City: Collingdale, state: Pennsylvania, Lat: 39.9151, Lng: -75.2776, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodmoor, Colorado 39.1063 -104.8456 matched with DB +City: Woodmoor, state: Colorado, Lat: 39.1063, Lng: -104.8456, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East York, Pennsylvania 39.9687 -76.6755 matched with DB +City: East York, state: Pennsylvania, Lat: 39.9687, Lng: -76.6755, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Poteau, Oklahoma 35.0282 -94.6346 matched with DB +City: Poteau, state: Oklahoma, Lat: 35.0282, Lng: -94.6346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coffeyville, Kansas 37.0519 -95.6180 matched with DB +City: Coffeyville, state: Kansas, Lat: 37.0519, Lng: -95.618, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andalusia, Alabama 31.3102 -86.4781 matched with DB +City: Andalusia, state: Alabama, Lat: 31.3102, Lng: -86.4781, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Park, Texas 32.8311 -96.8012 matched with DB +City: Highland Park, state: New Jersey, Lat: 40.5006, Lng: -74.4283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Texas 32.8311 -96.8012 matched with DB +City: Highland Park, state: Michigan, Lat: 42.4052, Lng: -83.0977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Texas 32.8311 -96.8012 matched with DB +City: Highland Park, state: Illinois, Lat: 42.1823, Lng: -87.8104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Texas 32.8311 -96.8012 matched with DB +City: Highland Park, state: Texas, Lat: 32.8311, Lng: -96.8012, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Texas 30.0315 -94.9158 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Texas 30.0315 -94.9158 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Texas 30.0315 -94.9158 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, South Carolina 34.6818 -82.9600 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Signal Mountain, Tennessee 35.1448 -85.3457 matched with DB +City: Signal Mountain, state: Tennessee, Lat: 35.1448, Lng: -85.3457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortez, Colorado 37.3503 -108.5768 matched with DB +City: Cortez, state: Colorado, Lat: 37.3503, Lng: -108.5768, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Kentucky 38.6455 -83.7911 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanatoga, Pennsylvania 40.2497 -75.5887 matched with DB +City: Sanatoga, state: Pennsylvania, Lat: 40.2497, Lng: -75.5887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gibsonville, North Carolina 36.0993 -79.5415 matched with DB +City: Gibsonville, state: North Carolina, Lat: 36.0993, Lng: -79.5415, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Missouri 38.8059 -94.2652 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Missouri 38.8059 -94.2652 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Missouri 38.8059 -94.2652 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Valley, Georgia 32.5520 -83.8817 matched with DB +City: Fort Valley, state: Georgia, Lat: 32.552, Lng: -83.8817, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toppenish, Washington 46.3806 -120.3122 matched with DB +City: Toppenish, state: Washington, Lat: 46.3806, Lng: -120.3122, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Washington 47.1694 -122.3628 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Washington 47.1694 -122.3628 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Washington 47.1694 -122.3628 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carbondale, Pennsylvania 41.5714 -75.5048 matched with DB +City: Carbondale, state: Pennsylvania, Lat: 41.5714, Lng: -75.5048, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carbondale, Pennsylvania 41.5714 -75.5048 matched with DB +City: Carbondale, state: Illinois, Lat: 37.7221, Lng: -89.2237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Hills Place, Louisiana 30.3690 -91.0887 matched with DB +City: Oak Hills Place, state: Louisiana, Lat: 30.369, Lng: -91.0887, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bainbridge, Ohio 41.3855 -81.3478 matched with DB +City: Bainbridge, state: Georgia, Lat: 30.9052, Lng: -84.5732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bainbridge, Ohio 41.3855 -81.3478 matched with DB +City: Bainbridge, state: Ohio, Lat: 41.3855, Lng: -81.3478, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pitman, New Jersey 39.7335 -75.1306 matched with DB +City: Pitman, state: New Jersey, Lat: 39.7335, Lng: -75.1306, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, New Jersey 39.6627 -75.0782 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Jersey 39.6627 -75.0782 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Jersey 39.6627 -75.0782 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Jersey 39.6627 -75.0782 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Jersey 39.6627 -75.0782 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Haledon, New Jersey 40.9628 -74.1844 matched with DB +City: North Haledon, state: New Jersey, Lat: 40.9628, Lng: -74.1844, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeannette, Pennsylvania 40.3277 -79.6139 matched with DB +City: Jeannette, state: Pennsylvania, Lat: 40.3277, Lng: -79.6139, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Illinois 42.1347 -87.7641 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boonton, New Jersey 40.9047 -74.4048 matched with DB +City: Boonton, state: New Jersey, Lat: 40.9047, Lng: -74.4048, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Rhode Island 41.8820 -71.5549 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clanton, Alabama 32.8444 -86.6233 matched with DB +City: Clanton, state: Alabama, Lat: 32.8444, Lng: -86.6233, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, Maine 43.9346 -69.8346 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, Maine 43.9346 -69.8346 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mahopac, New York 41.3688 -73.7414 matched with DB +City: Mahopac, state: New York, Lat: 41.3688, Lng: -73.7414, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadow Lakes, Alaska 61.6380 -149.6080 matched with DB +City: Meadow Lakes, state: Alaska, Lat: 61.638, Lng: -149.608, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Presque Isle, Maine 46.6868 -67.9874 matched with DB +City: Presque Isle, state: Maine, Lat: 46.6868, Lng: -67.9874, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bee Cave, Texas 30.3084 -97.9629 matched with DB +City: Bee Cave, state: Texas, Lat: 30.3084, Lng: -97.9629, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monmouth, Illinois 40.9140 -90.6425 matched with DB +City: Monmouth, state: Illinois, Lat: 40.914, Lng: -90.6425, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monmouth, Illinois 40.9140 -90.6425 matched with DB +City: Monmouth, state: Oregon, Lat: 44.8505, Lng: -123.2284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley Lake, California 34.4987 -117.2683 matched with DB +City: Spring Valley Lake, state: California, Lat: 34.4987, Lng: -117.2683, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wesley Chapel, North Carolina 34.9985 -80.6903 matched with DB +City: Wesley Chapel, state: Florida, Lat: 28.2106, Lng: -82.3238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wesley Chapel, North Carolina 34.9985 -80.6903 matched with DB +City: Wesley Chapel, state: North Carolina, Lat: 34.9985, Lng: -80.6903, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry Heights, Ohio 40.7977 -81.4680 matched with DB +City: Perry Heights, state: Ohio, Lat: 40.7977, Lng: -81.468, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mascoutah, Illinois 38.5192 -89.8045 matched with DB +City: Mascoutah, state: Illinois, Lat: 38.5192, Lng: -89.8045, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stony Brook University, New York 40.9098 -73.1217 matched with DB +City: Stony Brook University, state: New York, Lat: 40.9098, Lng: -73.1217, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit View, Washington 47.1343 -122.3467 matched with DB +City: Summit View, state: Washington, Lat: 47.1343, Lng: -122.3467, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Hampshire 43.4499 -71.6691 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murillo, Texas 26.2642 -98.1233 matched with DB +City: Murillo, state: Texas, Lat: 26.2642, Lng: -98.1233, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hoquiam, Washington 46.9863 -123.9022 matched with DB +City: Hoquiam, state: Washington, Lat: 46.9863, Lng: -123.9022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corona de Tucson, Arizona 31.9503 -110.7835 matched with DB +City: Corona de Tucson, state: Arizona, Lat: 31.9503, Lng: -110.7835, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollymead, Virginia 38.1266 -78.4386 matched with DB +City: Hollymead, state: Virginia, Lat: 38.1266, Lng: -78.4386, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Graham, Texas 33.1017 -98.5779 matched with DB +City: Graham, state: North Carolina, Lat: 36.0589, Lng: -79.3894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Texas 33.1017 -98.5779 matched with DB +City: Graham, state: Washington, Lat: 47.0322, Lng: -122.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Texas 33.1017 -98.5779 matched with DB +City: Graham, state: Texas, Lat: 33.1017, Lng: -98.5779, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Jervis, New York 41.3783 -74.6910 matched with DB +City: Port Jervis, state: New York, Lat: 41.3783, Lng: -74.691, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Ohio 39.2297 -84.4816 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Ohio 39.2297 -84.4816 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aransas Pass, Texas 27.8876 -97.1136 matched with DB +City: Aransas Pass, state: Texas, Lat: 27.8876, Lng: -97.1136, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chanute, Kansas 37.6695 -95.4621 matched with DB +City: Chanute, state: Kansas, Lat: 37.6695, Lng: -95.4621, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, Oklahoma 35.1524 -97.6602 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anthony, New Mexico 32.0131 -106.5984 matched with DB +City: Anthony, state: New Mexico, Lat: 32.0131, Lng: -106.5984, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit Park, Utah 40.7423 -111.5872 matched with DB +City: Summit Park, state: Utah, Lat: 40.7423, Lng: -111.5872, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunn Loring, Virginia 38.8945 -77.2315 matched with DB +City: Dunn Loring, state: Virginia, Lat: 38.8945, Lng: -77.2315, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Villa, Illinois 42.4184 -88.0836 matched with DB +City: Lake Villa, state: Illinois, Lat: 42.4184, Lng: -88.0836, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogden, North Carolina 34.2656 -77.7966 matched with DB +City: Ogden, state: North Carolina, Lat: 34.2656, Lng: -77.7966, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, North Carolina 34.2656 -77.7966 matched with DB +City: Ogden, state: Utah, Lat: 41.2279, Lng: -111.9682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, North Carolina 34.2656 -77.7966 matched with DB +City: Ogden, state: New York, Lat: 43.1646, Lng: -77.822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Innsbrook, Virginia 37.6552 -77.5775 matched with DB +City: Innsbrook, state: Virginia, Lat: 37.6552, Lng: -77.5775, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Audubon, New Jersey 39.8906 -75.0722 matched with DB +City: Audubon, state: New Jersey, Lat: 39.8906, Lng: -75.0722, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Audubon, New Jersey 39.8906 -75.0722 matched with DB +City: Audubon, state: Pennsylvania, Lat: 40.1304, Lng: -75.428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, North Carolina 36.3155 -78.5848 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, North Carolina 36.3155 -78.5848 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, North Carolina 36.3155 -78.5848 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, North Carolina 36.3155 -78.5848 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, North Carolina 36.3155 -78.5848 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savoy, Illinois 40.0600 -88.2552 matched with DB +City: Savoy, state: Illinois, Lat: 40.06, Lng: -88.2552, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheviot, Ohio 39.1577 -84.6139 matched with DB +City: Cheviot, state: Ohio, Lat: 39.1577, Lng: -84.6139, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillview, Kentucky 38.0562 -85.6847 matched with DB +City: Hillview, state: Kentucky, Lat: 38.0562, Lng: -85.6847, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sangaree, South Carolina 33.0327 -80.1253 matched with DB +City: Sangaree, state: South Carolina, Lat: 33.0327, Lng: -80.1253, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tecumseh, Michigan 42.0066 -83.9450 matched with DB +City: Tecumseh, state: Michigan, Lat: 42.0066, Lng: -83.945, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Road, Oregon 44.0833 -123.1320 matched with DB +City: River Road, state: Oregon, Lat: 44.0833, Lng: -123.132, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, North Carolina 35.1350 -79.4326 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, North Carolina 35.1350 -79.4326 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, North Carolina 35.1350 -79.4326 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, North Carolina 35.1350 -79.4326 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, North Carolina 35.1350 -79.4326 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olmsted Falls, Ohio 41.3657 -81.9038 matched with DB +City: Olmsted Falls, state: Ohio, Lat: 41.3657, Lng: -81.9038, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryan, Ohio 41.4706 -84.5483 matched with DB +City: Bryan, state: Ohio, Lat: 41.4706, Lng: -84.5483, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bryan, Ohio 41.4706 -84.5483 matched with DB +City: Bryan, state: Texas, Lat: 30.665, Lng: -96.3807, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wharton, Texas 29.3177 -96.1022 matched with DB +City: Wharton, state: Texas, Lat: 29.3177, Lng: -96.1022, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Heartland, Texas 32.6748 -96.4515 matched with DB +City: Heartland, state: Texas, Lat: 32.6748, Lng: -96.4515, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baxter, Minnesota 46.3426 -94.2793 matched with DB +City: Baxter, state: Minnesota, Lat: 46.3426, Lng: -94.2793, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Mitchell, Kentucky 39.0460 -84.5562 matched with DB +City: Fort Mitchell, state: Kentucky, Lat: 39.046, Lng: -84.5562, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perryton, Texas 36.3928 -100.7976 matched with DB +City: Perryton, state: Texas, Lat: 36.3928, Lng: -100.7976, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarendon Hills, Illinois 41.7981 -87.9568 matched with DB +City: Clarendon Hills, state: Illinois, Lat: 41.7981, Lng: -87.9568, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Knox, Kentucky 37.8915 -85.9636 matched with DB +City: Fort Knox, state: Kentucky, Lat: 37.8915, Lng: -85.9636, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Hills, Missouri 37.8211 -90.5050 matched with DB +City: Park Hills, state: Missouri, Lat: 37.8211, Lng: -90.505, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Village Green-Green Ridge, Pennsylvania 39.8639 -75.4257 matched with DB +City: Village Green-Green Ridge, state: Pennsylvania, Lat: 39.8639, Lng: -75.4257, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Heights, Ohio 41.5518 -81.4691 matched with DB +City: Highland Heights, state: Ohio, Lat: 41.5518, Lng: -81.4691, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lihue, Hawaii 21.9721 -159.3564 matched with DB +City: Lihue, state: Hawaii, Lat: 21.9721, Lng: -159.3564, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenton, Missouri 38.8187 -91.1385 matched with DB +City: Warrenton, state: Virginia, Lat: 38.7176, Lng: -77.7976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrenton, Missouri 38.8187 -91.1385 matched with DB +City: Warrenton, state: Missouri, Lat: 38.8187, Lng: -91.1385, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gulf Hills, Mississippi 30.4367 -88.8150 matched with DB +City: Gulf Hills, state: Mississippi, Lat: 30.4367, Lng: -88.815, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guntersville, Alabama 34.3671 -86.2637 matched with DB +City: Guntersville, state: Alabama, Lat: 34.3671, Lng: -86.2637, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Tennessee 35.5660 -89.6482 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Tennessee 35.5660 -89.6482 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Tennessee 35.5660 -89.6482 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Tennessee 35.5660 -89.6482 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Tennessee 35.5660 -89.6482 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manteno, Illinois 41.2470 -87.8457 matched with DB +City: Manteno, state: Illinois, Lat: 41.247, Lng: -87.8457, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, Virginia 36.9755 -76.6152 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Virginia 36.9755 -76.6152 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Virginia 36.9755 -76.6152 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Virginia 36.9755 -76.6152 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Riley, Kansas 39.1064 -96.8117 matched with DB +City: Fort Riley, state: Kansas, Lat: 39.1064, Lng: -96.8117, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicstown, New York 41.4472 -74.3914 matched with DB +City: Mechanicstown, state: New York, Lat: 41.4472, Lng: -74.3914, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Templeton, California 35.5560 -120.7181 matched with DB +City: Templeton, state: California, Lat: 35.556, Lng: -120.7181, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corbin, Kentucky 36.9323 -84.1006 matched with DB +City: Corbin, state: Kentucky, Lat: 36.9323, Lng: -84.1006, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Socorro, New Mexico 34.0543 -106.9065 matched with DB +City: Socorro, state: New Mexico, Lat: 34.0543, Lng: -106.9065, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Socorro, New Mexico 34.0543 -106.9065 matched with DB +City: Socorro, state: Texas, Lat: 31.6383, Lng: -106.2601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Citrus Hills, Florida 28.8870 -82.4312 matched with DB +City: Citrus Hills, state: Florida, Lat: 28.887, Lng: -82.4312, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seffner, Florida 27.9981 -82.2735 matched with DB +City: Seffner, state: Florida, Lat: 27.9981, Lng: -82.2735, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryans Road, Maryland 38.6145 -77.0851 matched with DB +City: Bryans Road, state: Maryland, Lat: 38.6145, Lng: -77.0851, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, South Carolina 34.7248 -80.7804 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, South Carolina 34.7248 -80.7804 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, South Carolina 34.7248 -80.7804 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, South Carolina 34.7248 -80.7804 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, South Carolina 34.7248 -80.7804 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, South Carolina 34.7248 -80.7804 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monona, Wisconsin 43.0540 -89.3334 matched with DB +City: Monona, state: Wisconsin, Lat: 43.054, Lng: -89.3334, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennedale, Texas 32.6434 -97.2172 matched with DB +City: Kennedale, state: Texas, Lat: 32.6434, Lng: -97.2172, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Swissvale, Pennsylvania 40.4206 -79.8859 matched with DB +City: Swissvale, state: Pennsylvania, Lat: 40.4206, Lng: -79.8859, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Lorenzo, Puerto Rico 18.1875 -65.9680 matched with DB +City: San Lorenzo, state: California, Lat: 37.6733, Lng: -122.1332, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden Isle, Louisiana 30.2268 -89.8043 matched with DB +City: Eden Isle, state: Louisiana, Lat: 30.2268, Lng: -89.8043, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Othello, Washington 46.8221 -119.1653 matched with DB +City: Othello, state: Washington, Lat: 46.8221, Lng: -119.1653, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gering, Nebraska 41.8275 -103.6622 matched with DB +City: Gering, state: Nebraska, Lat: 41.8275, Lng: -103.6622, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gonzales, California 36.5055 -121.4427 matched with DB +City: Gonzales, state: Louisiana, Lat: 30.2132, Lng: -90.9234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gonzales, California 36.5055 -121.4427 matched with DB +City: Gonzales, state: California, Lat: 36.5055, Lng: -121.4427, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamesa, Texas 32.7333 -101.9541 matched with DB +City: Lamesa, state: Texas, Lat: 32.7333, Lng: -101.9541, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Island, North Carolina 33.9434 -78.1366 matched with DB +City: Oak Island, state: North Carolina, Lat: 33.9434, Lng: -78.1366, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kings Grant, North Carolina 34.2664 -77.8659 matched with DB +City: Kings Grant, state: North Carolina, Lat: 34.2664, Lng: -77.8659, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paloma Creek South, Texas 33.2100 -96.9325 matched with DB +City: Paloma Creek South, state: Texas, Lat: 33.21, Lng: -96.9325, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrydale, Louisiana 30.4998 -91.1081 matched with DB +City: Merrydale, state: Louisiana, Lat: 30.4998, Lng: -91.1081, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Kansas 37.2119 -95.7327 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Kansas 37.2119 -95.7327 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Kansas 37.2119 -95.7327 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Kansas 37.2119 -95.7327 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Closter, New Jersey 40.9733 -73.9604 matched with DB +City: Closter, state: New Jersey, Lat: 40.9733, Lng: -73.9604, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arab, Alabama 34.3309 -86.4991 matched with DB +City: Arab, state: Alabama, Lat: 34.3309, Lng: -86.4991, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunn, North Carolina 35.3114 -78.6129 matched with DB +City: Dunn, state: North Carolina, Lat: 35.3114, Lng: -78.6129, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Long Branch, New Jersey 40.2883 -74.0185 matched with DB +City: West Long Branch, state: New Jersey, Lat: 40.2883, Lng: -74.0185, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Washington 47.2524 -122.3153 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Washington 47.2524 -122.3153 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Washington 47.2524 -122.3153 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Washington 47.2524 -122.3153 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Washington 47.2524 -122.3153 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Washington 47.2524 -122.3153 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Illinois 41.5410 -87.6118 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arizona City, Arizona 32.7506 -111.6707 matched with DB +City: Arizona City, state: Arizona, Lat: 32.7506, Lng: -111.6707, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perryville, Missouri 37.7263 -89.8759 matched with DB +City: Perryville, state: Missouri, Lat: 37.7263, Lng: -89.8759, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Folsom, Pennsylvania 39.8924 -75.3287 matched with DB +City: Folsom, state: California, Lat: 38.6668, Lng: -121.1422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Folsom, Pennsylvania 39.8924 -75.3287 matched with DB +City: Folsom, state: Pennsylvania, Lat: 39.8924, Lng: -75.3287, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, South Carolina 34.9967 -81.2341 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, South Carolina 34.9967 -81.2341 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, South Carolina 34.9967 -81.2341 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montecito, California 34.4384 -119.6309 matched with DB +City: Montecito, state: California, Lat: 34.4384, Lng: -119.6309, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Severance, Colorado 40.5265 -104.8650 matched with DB +City: Severance, state: Colorado, Lat: 40.5265, Lng: -104.865, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malverne, New York 40.6746 -73.6721 matched with DB +City: Malverne, state: New York, Lat: 40.6746, Lng: -73.6721, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sallisaw, Oklahoma 35.4606 -94.8072 matched with DB +City: Sallisaw, state: Oklahoma, Lat: 35.4606, Lng: -94.8072, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewistown, Pennsylvania 40.5964 -77.5730 matched with DB +City: Lewistown, state: Pennsylvania, Lat: 40.5964, Lng: -77.573, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delavan, Wisconsin 42.6282 -88.6323 matched with DB +City: Delavan, state: Wisconsin, Lat: 42.6282, Lng: -88.6323, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, Montana 48.2308 -114.2700 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, Montana 48.2308 -114.2700 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sutherlin, Oregon 43.3882 -123.3242 matched with DB +City: Sutherlin, state: Oregon, Lat: 43.3882, Lng: -123.3242, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland Hills, Texas 32.8095 -97.2273 matched with DB +City: Richland Hills, state: Texas, Lat: 32.8095, Lng: -97.2273, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehouse, Texas 32.2222 -95.2210 matched with DB +City: Whitehouse, state: Texas, Lat: 32.2222, Lng: -95.221, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Wisconsin 44.8029 -91.4385 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Wisconsin 44.8029 -91.4385 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Wisconsin 44.8029 -91.4385 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Old Forge, Pennsylvania 41.3704 -75.7409 matched with DB +City: Old Forge, state: Pennsylvania, Lat: 41.3704, Lng: -75.7409, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Oklahoma 35.5069 -98.9706 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Montana 45.6665 -110.5539 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Montana 45.6665 -110.5539 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, South Carolina 33.3594 -79.2958 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, South Carolina 33.3594 -79.2958 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, South Carolina 33.3594 -79.2958 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Center, Kansas 37.8332 -97.3646 matched with DB +City: Valley Center, state: California, Lat: 33.233, Lng: -117.0158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Kentucky 39.0092 -84.5604 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Kentucky 39.0092 -84.5604 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Arkansas 33.6257 -91.7934 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northfield, New Jersey 39.3718 -74.5543 matched with DB +City: Northfield, state: Minnesota, Lat: 44.455, Lng: -93.1698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murphy, Missouri 38.4922 -90.4856 matched with DB +City: Murphy, state: Texas, Lat: 33.0186, Lng: -96.6105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ephrata, Washington 47.3122 -119.5341 matched with DB +City: Ephrata, state: Pennsylvania, Lat: 40.1811, Lng: -76.1812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Providence, Utah 41.7035 -111.8123 matched with DB +City: Providence, state: Rhode Island, Lat: 41.823, Lng: -71.4187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson City, Tennessee 36.1201 -83.4829 matched with DB +City: Jefferson City, state: Missouri, Lat: 38.5676, Lng: -92.1759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Illinois 37.7374 -88.5457 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Illinois 37.7374 -88.5457 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, New Jersey 41.0534 -74.7527 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, New Jersey 41.0534 -74.7527 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, New Jersey 41.0534 -74.7527 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, New Jersey 41.0534 -74.7527 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Virginia 37.5200 -77.3772 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, North Carolina 35.0004 -78.3313 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, New Jersey 40.3768 -74.5112 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, New Jersey 40.3768 -74.5112 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, New Jersey 40.3768 -74.5112 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Ohio 40.8847 -82.6578 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Texas 30.0378 -94.7879 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Texas 30.0378 -94.7879 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Indiana 38.3553 -87.5784 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Indiana 38.3553 -87.5784 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Indiana 38.3553 -87.5784 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampstead, North Carolina 34.3627 -77.7318 matched with DB +City: Hampstead, state: New Hampshire, Lat: 42.8821, Lng: -71.171, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, Indiana 40.2738 -85.8374 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Illinois 39.6148 -87.6903 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Illinois 39.6148 -87.6903 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Illinois 39.6148 -87.6903 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Marys, Ohio 40.5476 -84.3926 matched with DB +City: St. Marys, state: Pennsylvania, Lat: 41.4574, Lng: -78.5342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Marys, Ohio 40.5476 -84.3926 matched with DB +City: St. Marys, state: Georgia, Lat: 30.7567, Lng: -81.5722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denison, Iowa 42.0162 -95.3528 matched with DB +City: Denison, state: Texas, Lat: 33.7672, Lng: -96.5808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Tennessee 35.1271 -85.1453 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Tennessee 35.1271 -85.1453 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Tennessee 35.1271 -85.1453 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Tennessee 35.1271 -85.1453 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Tennessee 35.1271 -85.1453 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Tennessee 35.1271 -85.1453 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irondale, Georgia 33.4773 -84.3601 matched with DB +City: Irondale, state: Alabama, Lat: 33.5439, Lng: -86.6606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Missouri 39.0075 -94.1282 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Missouri 39.0075 -94.1282 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Missouri 39.0075 -94.1282 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somers, Wisconsin 42.6411 -87.8919 matched with DB +City: Somers, state: New York, Lat: 41.3056, Lng: -73.7252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Tennessee 35.1933 -87.0350 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Florida 30.1711 -85.6090 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, Michigan 42.5806 -84.4427 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Texas 32.0093 -97.1150 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Kansas 38.7565 -94.8201 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Kansas 38.7565 -94.8201 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Hill, Connecticut 41.2666 -73.2283 matched with DB +City: Long Hill, state: New Jersey, Lat: 40.6838, Lng: -74.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scott, Louisiana 30.2398 -92.0948 matched with DB +City: Scott, state: Pennsylvania, Lat: 40.3875, Lng: -80.0791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookhaven, Pennsylvania 39.8715 -75.3918 matched with DB +City: Brookhaven, state: Mississippi, Lat: 31.5803, Lng: -90.4432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, Pennsylvania 39.8715 -75.3918 matched with DB +City: Brookhaven, state: Georgia, Lat: 33.8743, Lng: -84.3314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, Pennsylvania 39.8715 -75.3918 matched with DB +City: Brookhaven, state: New York, Lat: 40.832, Lng: -72.9517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Georgia 33.3774 -84.2969 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Georgia 33.3774 -84.2969 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Georgia 33.3774 -84.2969 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Pennsylvania 40.4945 -80.0550 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Pennsylvania 40.4945 -80.0550 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Pennsylvania 40.4945 -80.0550 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berkeley, Missouri 38.7439 -90.3361 matched with DB +City: Berkeley, state: California, Lat: 37.8722, Lng: -122.276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berkeley, Missouri 38.7439 -90.3361 matched with DB +City: Berkeley, state: New Jersey, Lat: 39.9156, Lng: -74.1923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkville, Pennsylvania 39.7859 -76.9686 matched with DB +City: Parkville, state: Maryland, Lat: 39.3832, Lng: -76.5519, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orono, Minnesota 44.9657 -93.5908 matched with DB +City: Orono, state: Maine, Lat: 44.8867, Lng: -68.7166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Georgia 32.6342 -83.6853 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Georgia 32.6342 -83.6853 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maryville, Illinois 38.7264 -89.9647 matched with DB +City: Maryville, state: Missouri, Lat: 40.3428, Lng: -94.8702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maryville, Illinois 38.7264 -89.9647 matched with DB +City: Maryville, state: Tennessee, Lat: 35.7468, Lng: -83.9789, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnstown, New York 43.0073 -74.3755 matched with DB +City: Johnstown, state: Pennsylvania, Lat: 40.326, Lng: -78.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnstown, New York 43.0073 -74.3755 matched with DB +City: Johnstown, state: Colorado, Lat: 40.3499, Lng: -104.9482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillside, Illinois 41.8675 -87.9019 matched with DB +City: Hillside, state: New Jersey, Lat: 40.6961, Lng: -74.2286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Utah 38.7613 -112.0931 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Utah 38.7613 -112.0931 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Ohio 41.2745 -82.8403 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Ohio 41.2745 -82.8403 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Ohio 41.2745 -82.8403 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Pennsylvania 40.6844 -75.2407 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maplewood, Missouri 38.6121 -90.3240 matched with DB +City: Maplewood, state: Minnesota, Lat: 44.9842, Lng: -93.0247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maplewood, Missouri 38.6121 -90.3240 matched with DB +City: Maplewood, state: New Jersey, Lat: 40.733, Lng: -74.2712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Francis, Minnesota 45.3991 -93.3901 matched with DB +City: St. Francis, state: Wisconsin, Lat: 42.9716, Lng: -87.873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, California 39.9283 -122.1819 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Virginia 36.6831 -76.9386 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillcrest, New York 41.1298 -74.0350 matched with DB +City: Hillcrest, state: California, Lat: 35.379, Lng: -118.9578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brentwood, Missouri 38.6194 -90.3475 matched with DB +City: Brentwood, state: Pennsylvania, Lat: 40.3734, Lng: -79.9757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Missouri 38.6194 -90.3475 matched with DB +City: Brentwood, state: New York, Lat: 40.7839, Lng: -73.2522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Missouri 38.6194 -90.3475 matched with DB +City: Brentwood, state: Tennessee, Lat: 35.9918, Lng: -86.7758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Missouri 38.6194 -90.3475 matched with DB +City: Brentwood, state: California, Lat: 37.9356, Lng: -121.719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green, Oregon 43.1509 -123.3854 matched with DB +City: Green, state: Ohio, Lat: 40.9483, Lng: -81.4757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alliance, Nebraska 42.1025 -102.8766 matched with DB +City: Alliance, state: Ohio, Lat: 40.9107, Lng: -81.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, Nebraska 40.8701 -97.5928 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Nebraska 40.8701 -97.5928 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Nebraska 40.8701 -97.5928 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, South Carolina 34.7235 -81.6248 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, South Carolina 34.7235 -81.6248 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, South Carolina 34.7235 -81.6248 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Oklahoma 36.3723 -95.8609 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seaford, Delaware 38.6538 -75.6110 matched with DB +City: Seaford, state: New York, Lat: 40.6678, Lng: -73.4922, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, New Jersey 40.9990 -74.3472 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, New Jersey 40.9990 -74.3472 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Minnesota 45.3365 -92.9766 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Minnesota 45.3365 -92.9766 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, Vermont 44.2659 -72.5717 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: true lat: true lng: true) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Michigan 41.9267 -84.6356 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Arkansas 36.0370 -94.2537 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Arkansas 36.0370 -94.2537 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Arkansas 36.0370 -94.2537 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Arkansas 36.0370 -94.2537 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Arkansas 36.0370 -94.2537 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Arkansas 36.0370 -94.2537 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Arkansas 35.6234 -91.2322 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Arkansas 35.6234 -91.2322 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Arkansas 35.6234 -91.2322 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barberton, Washington 45.7136 -122.6115 matched with DB +City: Barberton, state: Ohio, Lat: 41.0095, Lng: -81.6037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Tennessee 35.6618 -88.3944 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Tennessee 35.6618 -88.3944 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Tennessee 35.6618 -88.3944 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Tennessee 35.6618 -88.3944 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Tennessee 35.6618 -88.3944 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland Park, Colorado 38.9985 -105.0594 matched with DB +City: Woodland Park, state: New Jersey, Lat: 40.8904, Lng: -74.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Heber, California 32.7325 -115.5294 matched with DB +City: Heber, state: Utah, Lat: 40.507, Lng: -111.3986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grove City, Pennsylvania 41.1572 -80.0894 matched with DB +City: Grove City, state: Ohio, Lat: 39.8654, Lng: -83.069, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Wisconsin 46.5799 -90.8713 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Wisconsin 46.5799 -90.8713 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Wisconsin 46.5799 -90.8713 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Wisconsin 46.5799 -90.8713 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Wisconsin 46.5799 -90.8713 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Wisconsin 46.5799 -90.8713 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Valley, Arizona 35.2060 -114.2327 matched with DB +City: Golden Valley, state: Minnesota, Lat: 44.9901, Lng: -93.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Kentucky 36.6686 -87.4216 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Kentucky 36.6686 -87.4216 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Kentucky 36.6686 -87.4216 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albertville, Minnesota 45.2364 -93.6618 matched with DB +City: Albertville, state: Alabama, Lat: 34.2633, Lng: -86.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Iowa 41.8387 -94.0938 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunnyvale, Texas 32.7974 -96.5577 matched with DB +City: Sunnyvale, state: California, Lat: 37.3836, Lng: -122.0255, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Michigan 42.0968 -86.4849 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Hills, California 34.3910 -117.4123 matched with DB +City: Oak Hills, state: Oregon, Lat: 45.5405, Lng: -122.8413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, South Carolina 34.2570 -80.6090 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, South Carolina 34.2570 -80.6090 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ripon, Wisconsin 43.8436 -88.8386 matched with DB +City: Ripon, state: California, Lat: 37.7417, Lng: -121.131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, Ohio 41.0777 -80.5903 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Wisconsin 43.3233 -88.1666 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, Florida 30.5661 -84.5858 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, Florida 30.5661 -84.5858 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Georgia 34.0156 -83.8319 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellwood, Virginia 37.4060 -77.4363 matched with DB +City: Bellwood, state: Illinois, Lat: 41.8829, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brunswick, Maryland 39.3180 -77.6253 matched with DB +City: Brunswick, state: Ohio, Lat: 41.2465, Lng: -81.8198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Maryland 39.3180 -77.6253 matched with DB +City: Brunswick, state: Georgia, Lat: 31.1449, Lng: -81.4746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Maryland 39.3180 -77.6253 matched with DB +City: Brunswick, state: Maine, Lat: 43.9007, Lng: -69.9761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Maryland 39.3180 -77.6253 matched with DB +City: Brunswick, state: New York, Lat: 42.7558, Lng: -73.5903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Wisconsin 43.0044 -88.8084 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Wisconsin 43.0044 -88.8084 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Wisconsin 43.0044 -88.8084 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Four Corners, Maryland 39.0235 -77.0102 matched with DB +City: Four Corners, state: Texas, Lat: 29.6705, Lng: -95.6596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Four Corners, Maryland 39.0235 -77.0102 matched with DB +City: Four Corners, state: Oregon, Lat: 44.929, Lng: -122.9732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Texas 30.3381 -95.0908 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Texas 30.3381 -95.0908 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Texas 30.3381 -95.0908 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, Washington 47.2344 -119.8530 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, Washington 47.2344 -119.8530 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Illinois 41.3807 -89.4640 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Illinois 41.3807 -89.4640 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Illinois 41.3807 -89.4640 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Minnesota 45.1906 -93.4758 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Minnesota 45.1906 -93.4758 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Minnesota 45.1906 -93.4758 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, New Jersey 41.0300 -74.3319 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, New Jersey 41.0300 -74.3319 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, New Jersey 41.0300 -74.3319 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shorewood, Minnesota 44.9034 -93.5905 matched with DB +City: Shorewood, state: Wisconsin, Lat: 43.0913, Lng: -87.8864, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shorewood, Minnesota 44.9034 -93.5905 matched with DB +City: Shorewood, state: Illinois, Lat: 41.5169, Lng: -88.2146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Kansas 37.2625 -97.4260 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Kansas 37.2625 -97.4260 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkville, Missouri 39.2005 -94.7225 matched with DB +City: Parkville, state: Maryland, Lat: 39.3832, Lng: -76.5519, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Albany, Mississippi 34.4909 -89.0201 matched with DB +City: New Albany, state: Indiana, Lat: 38.309, Lng: -85.8234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Albany, Mississippi 34.4909 -89.0201 matched with DB +City: New Albany, state: Ohio, Lat: 40.0809, Lng: -82.7848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairwood, Maryland 38.9565 -76.7780 matched with DB +City: Fairwood, state: Washington, Lat: 47.4467, Lng: -122.143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, North Carolina 35.6777 -82.0017 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Carolina 35.6777 -82.0017 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Carolina 35.6777 -82.0017 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Carolina 35.6777 -82.0017 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Carolina 35.6777 -82.0017 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Virginia 36.7215 -79.9122 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, North Carolina 36.1740 -79.9916 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, North Carolina 36.1740 -79.9916 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, North Carolina 36.1740 -79.9916 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Branch, Virginia 38.8302 -77.2713 matched with DB +City: Long Branch, state: New Jersey, Lat: 40.2965, Lng: -73.9915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, Oklahoma 35.6781 -97.7526 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clara, Utah 37.1312 -113.6560 matched with DB +City: Santa Clara, state: California, Lat: 37.3646, Lng: -121.968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Clara, Utah 37.1312 -113.6560 matched with DB +City: Santa Clara, state: Oregon, Lat: 44.1154, Lng: -123.1344, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, South Carolina 34.4781 -81.8638 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Virginia 37.7597 -77.4716 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Virginia 37.7597 -77.4716 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Virginia 37.7597 -77.4716 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Virginia 37.7597 -77.4716 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Virginia 37.7597 -77.4716 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Virginia 37.7597 -77.4716 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: London, Kentucky 37.1175 -84.0767 matched with DB +City: London, state: Ohio, Lat: 39.8935, Lng: -83.4375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burton, South Carolina 32.4232 -80.7456 matched with DB +City: Burton, state: Michigan, Lat: 42.9974, Lng: -83.6175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Pennsylvania 40.3415 -79.8008 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Pennsylvania 40.3415 -79.8008 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, California 37.3275 -120.5321 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Lee, Virginia 37.2357 -77.3325 matched with DB +City: Fort Lee, state: New Jersey, Lat: 40.8509, Lng: -73.9713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottage Grove, Wisconsin 43.0922 -89.2054 matched with DB +City: Cottage Grove, state: Minnesota, Lat: 44.8161, Lng: -92.9274, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cottage Grove, Wisconsin 43.0922 -89.2054 matched with DB +City: Cottage Grove, state: Oregon, Lat: 43.796, Lng: -123.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, California 37.9886 -122.5952 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bend, Washington 47.4900 -121.7741 matched with DB +City: North Bend, state: Oregon, Lat: 43.4075, Lng: -124.2364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Ohio 41.3780 -81.6385 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Ohio 41.3780 -81.6385 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Ohio 41.3780 -81.6385 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Ohio 41.3780 -81.6385 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Florida 28.1821 -82.5530 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mantua, Virginia 38.8526 -77.2571 matched with DB +City: Mantua, state: New Jersey, Lat: 39.7618, Lng: -75.1686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savage, Maryland 39.1485 -76.8228 matched with DB +City: Savage, state: Minnesota, Lat: 44.7545, Lng: -93.3632, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knoxville, Iowa 41.3188 -93.1024 matched with DB +City: Knoxville, state: Tennessee, Lat: 35.9692, Lng: -83.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Michigan 42.6498 -85.2886 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Michigan 42.6498 -85.2886 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Michigan 42.6498 -85.2886 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bull Run, Virginia 38.8396 -77.4897 matched with DB +City: Bull Run, state: Virginia, Lat: 38.7802, Lng: -77.5204, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshfield, Missouri 37.3424 -92.9107 matched with DB +City: Marshfield, state: Wisconsin, Lat: 44.6627, Lng: -90.1728, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshfield, Missouri 37.3424 -92.9107 matched with DB +City: Marshfield, state: Massachusetts, Lat: 42.114, Lng: -70.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, New Jersey 39.7915 -74.9374 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Michigan 42.5298 -83.7848 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Michigan 42.5298 -83.7848 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Michigan 42.5298 -83.7848 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Colorado 39.6366 -106.8125 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Florida 27.2215 -81.8585 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Florida 27.2215 -81.8585 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Wisconsin 42.8840 -88.2494 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Wisconsin 42.8840 -88.2494 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batesville, Mississippi 34.3148 -89.9249 matched with DB +City: Batesville, state: Arkansas, Lat: 35.7687, Lng: -91.6227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartsville, South Carolina 34.3675 -80.0829 matched with DB +City: Hartsville, state: Tennessee, Lat: 36.3921, Lng: -86.1568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, New Mexico 36.7401 -107.9734 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasantville, New York 41.1377 -73.7828 matched with DB +City: Pleasantville, state: New Jersey, Lat: 39.39, Lng: -74.5169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newberry, Florida 29.6382 -82.6061 matched with DB +City: Newberry, state: South Carolina, Lat: 34.2813, Lng: -81.601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newberry, Florida 29.6382 -82.6061 matched with DB +City: Newberry, state: Pennsylvania, Lat: 40.1286, Lng: -76.7919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commerce, Georgia 34.2134 -83.4733 matched with DB +City: Commerce, state: California, Lat: 33.9963, Lng: -118.1519, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Commerce, Georgia 34.2134 -83.4733 matched with DB +City: Commerce, state: Texas, Lat: 33.2421, Lng: -95.8992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Kentucky 38.9469 -84.6729 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Kentucky 38.9469 -84.6729 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Kentucky 38.9469 -84.6729 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, New York 40.7375 -73.1344 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, New York 40.7375 -73.1344 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highlands, Texas 29.8130 -95.0577 matched with DB +City: Highlands, state: New York, Lat: 41.3601, Lng: -74.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest City, North Carolina 35.3339 -81.8702 matched with DB +City: Forest City, state: Florida, Lat: 28.6619, Lng: -81.4444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Antonio, Puerto Rico 18.4471 -66.2995 matched with DB +City: San Antonio, state: Texas, Lat: 29.4632, Lng: -98.5238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Virginia 37.7825 -79.4441 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Virginia 37.7825 -79.4441 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Virginia 37.7825 -79.4441 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Virginia 37.7825 -79.4441 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Virginia 37.7825 -79.4441 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Wisconsin 44.3949 -88.7395 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northport, New York 40.9038 -73.3447 matched with DB +City: Northport, state: Alabama, Lat: 33.2586, Lng: -87.5993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Virginia 36.9382 -76.5238 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Virginia 36.9382 -76.5238 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Iowa 41.2981 -91.6928 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Park, Illinois 41.4461 -87.7154 matched with DB +City: University Park, state: Texas, Lat: 32.8506, Lng: -96.7937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Alabama 31.8437 -86.6380 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Missouri 36.9673 -93.7184 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Missouri 36.9673 -93.7184 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Missouri 36.9673 -93.7184 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Missouri 36.9673 -93.7184 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Acton, California 34.4956 -118.1858 matched with DB +City: Acton, state: Massachusetts, Lat: 42.4843, Lng: -71.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Delaware 38.6894 -75.3872 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Delaware 38.6894 -75.3872 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Delaware 38.6894 -75.3872 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Pennsylvania 40.6440 -75.3244 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, New Jersey 40.7587 -74.9825 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Illinois 38.6279 -88.9591 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Illinois 38.6279 -88.9591 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Illinois 38.6279 -88.9591 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Illinois 38.6279 -88.9591 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Illinois 38.6279 -88.9591 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Illinois 38.6279 -88.9591 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, New York 41.6522 -74.6874 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarkston, Washington 46.4161 -117.0505 matched with DB +City: Clarkston, state: Georgia, Lat: 33.8117, Lng: -84.2403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Indiana 41.4097 -87.2623 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Indiana 41.4097 -87.2623 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wharton, New Jersey 40.8998 -74.5808 matched with DB +City: Wharton, state: Texas, Lat: 29.3177, Lng: -96.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, South Carolina 34.5257 -82.7161 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, South Carolina 34.5257 -82.7161 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Mississippi 32.2309 -90.1591 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Mississippi 32.2309 -90.1591 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Mississippi 32.2309 -90.1591 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Mississippi 32.2309 -90.1591 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savannah, Tennessee 35.2210 -88.2360 matched with DB +City: Savannah, state: Georgia, Lat: 32.0286, Lng: -81.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gonzales, Texas 29.5126 -97.4472 matched with DB +City: Gonzales, state: Louisiana, Lat: 30.2132, Lng: -90.9234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gonzales, Texas 29.5126 -97.4472 matched with DB +City: Gonzales, state: California, Lat: 36.5055, Lng: -121.4427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Kentucky 36.8394 -86.8950 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Kentucky 36.8394 -86.8950 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Montana 45.6735 -108.7707 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Montana 45.6735 -108.7707 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Montana 45.6735 -108.7707 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Montana 45.6735 -108.7707 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, Ohio 39.5385 -82.4062 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, Ohio 39.5385 -82.4062 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, South Dakota 43.4324 -96.7041 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, South Dakota 43.4324 -96.7041 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobart, Washington 47.4120 -121.9960 matched with DB +City: Hobart, state: Indiana, Lat: 41.514, Lng: -87.2729, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hobart, Washington 47.4120 -121.9960 matched with DB +City: Hobart, state: Wisconsin, Lat: 44.4967, Lng: -88.1602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seminole, Oklahoma 35.2348 -96.6493 matched with DB +City: Seminole, state: Florida, Lat: 27.8435, Lng: -82.784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seaside, Oregon 45.9889 -123.9214 matched with DB +City: Seaside, state: California, Lat: 36.6224, Lng: -121.8199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandwich, Illinois 41.6497 -88.6179 matched with DB +City: Sandwich, state: Massachusetts, Lat: 41.7137, Lng: -70.4851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Tennessee 35.4912 -85.0120 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Tennessee 35.4912 -85.0120 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Tennessee 35.4912 -85.0120 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Texas 30.9221 -93.9947 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Texas 30.9221 -93.9947 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sturgis, South Dakota 44.4110 -103.4973 matched with DB +City: Sturgis, state: Michigan, Lat: 41.7991, Lng: -85.4184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Illinois 38.8867 -89.3894 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Falls, South Carolina 35.0073 -81.9692 matched with DB +City: Valley Falls, state: Rhode Island, Lat: 41.9233, Lng: -71.3924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robinson, Illinois 39.0089 -87.7333 matched with DB +City: Robinson, state: Texas, Lat: 31.4501, Lng: -97.1201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Robinson, Illinois 39.0089 -87.7333 matched with DB +City: Robinson, state: Pennsylvania, Lat: 40.4578, Lng: -80.1334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, Pennsylvania 40.0409 -75.3945 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, Pennsylvania 40.0409 -75.3945 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsland, Texas 30.6651 -98.4545 matched with DB +City: Kingsland, state: Georgia, Lat: 30.8194, Lng: -81.7216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortland, Ohio 41.3319 -80.7195 matched with DB +City: Cortland, state: New York, Lat: 42.6004, Lng: -76.1784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Minnesota 45.5655 -94.3035 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Philadelphia, Mississippi 32.7761 -89.1221 matched with DB +City: Philadelphia, state: Pennsylvania, Lat: 40.0077, Lng: -75.1339, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inwood, Florida 28.0391 -81.7677 matched with DB +City: Inwood, state: New York, Lat: 40.6219, Lng: -73.7506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batesville, Indiana 39.2974 -85.2144 matched with DB +City: Batesville, state: Arkansas, Lat: 35.7687, Lng: -91.6227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Tennessee 35.1490 -86.5634 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Tennessee 35.1490 -86.5634 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Tennessee 35.1490 -86.5634 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seminole, Texas 32.7207 -102.6501 matched with DB +City: Seminole, state: Florida, Lat: 27.8435, Lng: -82.784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barrington, New Jersey 39.8689 -75.0514 matched with DB +City: Barrington, state: Illinois, Lat: 42.1515, Lng: -88.1281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Barrington, New Jersey 39.8689 -75.0514 matched with DB +City: Barrington, state: New Hampshire, Lat: 43.2139, Lng: -71.0424, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Barrington, New Jersey 39.8689 -75.0514 matched with DB +City: Barrington, state: Rhode Island, Lat: 41.7443, Lng: -71.3145, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trinity, North Carolina 35.8756 -80.0093 matched with DB +City: Trinity, state: Florida, Lat: 28.1809, Lng: -82.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Illinois 38.0109 -88.9179 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuckahoe, New York 40.9531 -73.8230 matched with DB +City: Tuckahoe, state: Virginia, Lat: 37.5878, Lng: -77.5858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockland, Maine 44.1274 -69.1369 matched with DB +City: Rockland, state: Massachusetts, Lat: 42.1295, Lng: -70.91, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Alabama 33.5935 -86.1365 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Alabama 33.5935 -86.1365 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Alabama 33.5935 -86.1365 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Alabama 33.5935 -86.1365 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendota, Illinois 41.5553 -89.1041 matched with DB +City: Mendota, state: California, Lat: 36.7555, Lng: -120.3776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Connecticut 41.8665 -72.4512 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwich, New York 42.5333 -75.5227 matched with DB +City: Norwich, state: Connecticut, Lat: 41.5495, Lng: -72.0882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Ohio 40.9635 -81.4062 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holly Springs, Mississippi 34.7768 -89.4466 matched with DB +City: Holly Springs, state: Georgia, Lat: 34.1681, Lng: -84.4847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Holly Springs, Mississippi 34.7768 -89.4466 matched with DB +City: Holly Springs, state: North Carolina, Lat: 35.6526, Lng: -78.8399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Illinois 37.9200 -89.8260 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Illinois 37.9200 -89.8260 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunbury, Ohio 40.2485 -82.8806 matched with DB +City: Sunbury, state: Pennsylvania, Lat: 40.8616, Lng: -76.7871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Louis, Michigan 43.4082 -84.6118 matched with DB +City: St. Louis, state: Missouri, Lat: 38.6359, Lng: -90.2451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneonta, Alabama 33.9394 -86.4932 matched with DB +City: Oneonta, state: New York, Lat: 42.4551, Lng: -75.0666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridge City, Louisiana 29.9321 -90.1594 matched with DB +City: Bridge City, state: Texas, Lat: 30.0298, Lng: -93.8406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hurricane, West Virginia 38.4293 -82.0182 matched with DB +City: Hurricane, state: Utah, Lat: 37.1487, Lng: -113.3517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Florida 28.4014 -81.4462 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Ohio 39.9103 -84.2901 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Ohio 39.9103 -84.2901 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Ohio 39.9103 -84.2901 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Albans, Vermont 44.8119 -73.0849 matched with DB +City: St. Albans, state: West Virginia, Lat: 38.3769, Lng: -81.8198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Illinois 40.1468 -88.9633 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, Utah 40.2924 -110.0093 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron, Ohio 41.3912 -82.5636 matched with DB +City: Huron, state: South Dakota, Lat: 44.3623, Lng: -98.2094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Alabama 34.1346 -87.9755 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Alabama 34.1346 -87.9755 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Alabama 34.1346 -87.9755 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Alabama 34.1346 -87.9755 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean City, Maryland 38.3998 -75.0715 matched with DB +City: Ocean City, state: New Jersey, Lat: 39.2681, Lng: -74.602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Florida 30.1090 -83.5821 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Tennessee 35.9617 -83.1976 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Tennessee 35.9617 -83.1976 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Tennessee 35.9617 -83.1976 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Oregon 44.2068 -123.2102 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allendale, New Jersey 41.0332 -74.1333 matched with DB +City: Allendale, state: Michigan, Lat: 42.9845, Lng: -85.9499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Live Oak, Florida 30.2957 -82.9847 matched with DB +City: Live Oak, state: Texas, Lat: 29.5545, Lng: -98.3404, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Live Oak, Florida 30.2957 -82.9847 matched with DB +City: Live Oak, state: California, Lat: 36.986, Lng: -121.9804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Michigan 42.2618 -84.9598 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Michigan 42.2618 -84.9598 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Michigan 42.2618 -84.9598 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Michigan 42.2618 -84.9598 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Texas 33.2263 -97.5875 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Texas 33.2263 -97.5875 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Texas 33.2263 -97.5875 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Texas 33.2263 -97.5875 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, New York 40.6041 -73.7151 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, New York 40.6041 -73.7151 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, New York 40.6041 -73.7151 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, New York 40.6041 -73.7151 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, Minnesota 45.0326 -93.5834 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookings, Oregon 42.0697 -124.3002 matched with DB +City: Brookings, state: South Dakota, Lat: 44.3022, Lng: -96.7859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savannah, Texas 33.2257 -96.9081 matched with DB +City: Savannah, state: Georgia, Lat: 32.0286, Lng: -81.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Louisiana 30.8158 -92.6542 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Louisiana 30.8158 -92.6542 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, New York 41.7321 -73.9137 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Virginia 37.3360 -79.5179 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Virginia 37.3360 -79.5179 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Virginia 37.3360 -79.5179 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Virginia 37.3360 -79.5179 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Virginia 37.3360 -79.5179 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Virginia 37.3360 -79.5179 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, California 39.7558 -121.6063 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Louisiana 29.7851 -91.5098 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, California 38.4130 -121.2127 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ontario, Ohio 40.7710 -82.6104 matched with DB +City: Ontario, state: Oregon, Lat: 44.0259, Lng: -116.976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Ohio 40.7710 -82.6104 matched with DB +City: Ontario, state: California, Lat: 34.0393, Lng: -117.6064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Ohio 40.7710 -82.6104 matched with DB +City: Ontario, state: New York, Lat: 43.2408, Lng: -77.314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Hill, New York 42.4113 -76.4883 matched with DB +City: South Hill, state: Washington, Lat: 47.1198, Lng: -122.2853, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Pennsylvania 41.0088 -76.8507 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Pennsylvania 41.0088 -76.8507 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Pennsylvania 41.0088 -76.8507 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Pennsylvania 41.0088 -76.8507 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Pennsylvania 41.0088 -76.8507 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Pennsylvania 41.0088 -76.8507 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvington, New York 41.0349 -73.8660 matched with DB +City: Irvington, state: New Jersey, Lat: 40.7243, Lng: -74.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Shore, Washington 45.6911 -122.6911 matched with DB +City: Lake Shore, state: Maryland, Lat: 39.103, Lng: -76.4876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. John, Missouri 38.7148 -90.3462 matched with DB +City: St. John, state: Indiana, Lat: 41.4429, Lng: -87.4697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgewater, Virginia 38.3862 -78.9674 matched with DB +City: Bridgewater, state: Massachusetts, Lat: 41.9728, Lng: -70.9749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgewater, Virginia 38.3862 -78.9674 matched with DB +City: Bridgewater, state: New Jersey, Lat: 40.5934, Lng: -74.6076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutherford, Pennsylvania 40.2696 -76.7678 matched with DB +City: Rutherford, state: New Jersey, Lat: 40.8203, Lng: -74.1057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Heights, Kentucky 39.0354 -84.4567 matched with DB +City: Highland Heights, state: Ohio, Lat: 41.5518, Lng: -81.4691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, North Carolina 33.9467 -78.1132 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Rhode Island 41.4738 -71.5236 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Rhode Island 41.4738 -71.5236 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Rhode Island 41.4738 -71.5236 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynchburg, Tennessee 35.2846 -86.3587 matched with DB +City: Lynchburg, state: Virginia, Lat: 37.4003, Lng: -79.1909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Ohio 39.1699 -84.2811 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Ohio 39.1699 -84.2811 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Ohio 39.1699 -84.2811 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Ohio 39.1699 -84.2811 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Texas 32.1526 -94.3368 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corcoran, Minnesota 45.1089 -93.5837 matched with DB +City: Corcoran, state: California, Lat: 36.0841, Lng: -119.5613, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, New York 41.7208 -73.9625 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, New York 41.7208 -73.9625 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, New York 41.7208 -73.9625 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, New York 41.7208 -73.9625 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delano, Minnesota 45.0384 -93.7930 matched with DB +City: Delano, state: California, Lat: 35.7662, Lng: -119.2635, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carbondale, Colorado 39.3949 -107.2148 matched with DB +City: Carbondale, state: Pennsylvania, Lat: 41.5714, Lng: -75.5048, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carbondale, Colorado 39.3949 -107.2148 matched with DB +City: Carbondale, state: Illinois, Lat: 37.7221, Lng: -89.2237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Michigan 43.3706 -83.8827 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Michigan 43.3706 -83.8827 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Ohio 39.2123 -83.6113 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abilene, Kansas 38.9230 -97.2252 matched with DB +City: Abilene, state: Texas, Lat: 32.4543, Lng: -99.7384, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookhaven, West Virginia 39.6062 -79.8812 matched with DB +City: Brookhaven, state: Mississippi, Lat: 31.5803, Lng: -90.4432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, West Virginia 39.6062 -79.8812 matched with DB +City: Brookhaven, state: Georgia, Lat: 33.8743, Lng: -84.3314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookhaven, West Virginia 39.6062 -79.8812 matched with DB +City: Brookhaven, state: New York, Lat: 40.832, Lng: -72.9517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Michigan 42.5870 -83.6012 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Michigan 42.5870 -83.6012 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Michigan 42.5870 -83.6012 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Michigan 42.5870 -83.6012 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Indiana 37.9364 -87.8958 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Indiana 37.9364 -87.8958 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Indiana 37.9364 -87.8958 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Indiana 37.9364 -87.8958 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Indiana 37.9364 -87.8958 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Washington 45.9145 -122.7505 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powell, Wyoming 44.7958 -108.7681 matched with DB +City: Powell, state: Ohio, Lat: 40.1689, Lng: -83.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Powell, Wyoming 44.7958 -108.7681 matched with DB +City: Powell, state: Tennessee, Lat: 36.0358, Lng: -84.0296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keene, Texas 32.3955 -97.3226 matched with DB +City: Keene, state: New Hampshire, Lat: 42.9494, Lng: -72.2998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, North Carolina 35.5406 -78.2932 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, North Carolina 35.5406 -78.2932 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, North Carolina 35.5406 -78.2932 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington Heights, Pennsylvania 41.0041 -75.2112 matched with DB +City: Arlington Heights, state: Illinois, Lat: 42.0955, Lng: -87.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sullivan, Missouri 38.2129 -91.1637 matched with DB +City: Sullivan, state: New York, Lat: 43.0923, Lng: -75.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Indiana 40.4376 -84.9833 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Indiana 40.4376 -84.9833 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Indiana 40.4376 -84.9833 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Indiana 40.4376 -84.9833 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinehurst, Massachusetts 42.5334 -71.2339 matched with DB +City: Pinehurst, state: North Carolina, Lat: 35.1922, Lng: -79.4684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneseo, Illinois 41.4509 -90.1540 matched with DB +City: Geneseo, state: New York, Lat: 42.8038, Lng: -77.7783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flanders, New York 40.8937 -72.6051 matched with DB +City: Flanders, state: New Jersey, Lat: 40.8412, Lng: -74.7102, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Nebraska 41.1341 -102.9681 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, South Carolina 34.1787 -79.3956 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Carolina 34.1787 -79.3956 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Carolina 34.1787 -79.3956 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Carolina 34.1787 -79.3956 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Carolina 34.1787 -79.3956 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hills, Pennsylvania 40.4251 -79.8544 matched with DB +City: Forest Hills, state: Michigan, Lat: 42.9577, Lng: -85.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, New York 41.3645 -74.0123 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, New York 41.3645 -74.0123 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Lebanon, Ohio 39.3672 -84.2205 matched with DB +City: South Lebanon, state: Pennsylvania, Lat: 40.3058, Lng: -76.3708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker, Louisiana 30.4851 -90.8654 matched with DB +City: Walker, state: Michigan, Lat: 42.9853, Lng: -85.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Wyoming 42.7542 -105.3969 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Wyoming 42.7542 -105.3969 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Wyoming 42.7542 -105.3969 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shrewsbury, Missouri 38.5866 -90.3282 matched with DB +City: Shrewsbury, state: Massachusetts, Lat: 42.2842, Lng: -71.7154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durham, California 39.6232 -121.7875 matched with DB +City: Durham, state: North Carolina, Lat: 35.9792, Lng: -78.9022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Durham, California 39.6232 -121.7875 matched with DB +City: Durham, state: New Hampshire, Lat: 43.1174, Lng: -70.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Illinois 40.0342 -88.5728 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Indiana 38.6047 -86.0976 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Indiana 38.6047 -86.0976 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Indiana 38.6047 -86.0976 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Indiana 38.6047 -86.0976 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Indiana 38.6047 -86.0976 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Indiana 38.6047 -86.0976 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Tennessee 35.4446 -88.6531 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Tennessee 35.4446 -88.6531 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Tennessee 35.4446 -88.6531 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Tennessee 35.4446 -88.6531 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tecumseh, Oklahoma 35.2639 -96.9337 matched with DB +City: Tecumseh, state: Michigan, Lat: 42.0066, Lng: -83.945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Countryside, Illinois 41.7741 -87.8752 matched with DB +City: Countryside, state: Virginia, Lat: 39.0518, Lng: -77.4124, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Alaska 60.7928 -161.7917 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Washington, Pennsylvania 40.1408 -75.1926 matched with DB +City: Fort Washington, state: Maryland, Lat: 38.7339, Lng: -77.0069, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweetwater, Tennessee 35.6029 -84.4716 matched with DB +City: Sweetwater, state: Florida, Lat: 25.7785, Lng: -80.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sweetwater, Tennessee 35.6029 -84.4716 matched with DB +City: Sweetwater, state: Texas, Lat: 32.4692, Lng: -100.4092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Alaska 60.5405 -150.8089 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Alaska 60.5405 -150.8089 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Alaska 60.5405 -150.8089 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Washington 46.8198 -123.0636 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Washington 46.8198 -123.0636 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Washington 46.8198 -123.0636 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Washington 46.8198 -123.0636 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange City, Iowa 43.0023 -96.0566 matched with DB +City: Orange City, state: Florida, Lat: 28.9348, Lng: -81.2881, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampstead, Maryland 39.6105 -76.8549 matched with DB +City: Hampstead, state: New Hampshire, Lat: 42.8821, Lng: -71.171, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Pennsylvania 41.3958 -75.7147 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Pennsylvania 41.3958 -75.7147 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kentucky 37.5691 -85.2594 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, South Dakota 44.0062 -97.1085 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, South Dakota 44.0062 -97.1085 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, South Dakota 44.0062 -97.1085 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, South Dakota 44.0062 -97.1085 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, South Dakota 44.0062 -97.1085 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron, California 36.2041 -120.0961 matched with DB +City: Huron, state: South Dakota, Lat: 44.3623, Lng: -98.2094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Montana 47.7152 -104.1679 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenton, Oregon 46.1685 -123.9302 matched with DB +City: Warrenton, state: Virginia, Lat: 38.7176, Lng: -77.7976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrenton, Oregon 46.1685 -123.9302 matched with DB +City: Warrenton, state: Missouri, Lat: 38.8187, Lng: -91.1385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Kentucky 37.1068 -87.8853 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Kentucky 37.1068 -87.8853 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Kentucky 37.1068 -87.8853 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calverton, New York 40.9138 -72.7660 matched with DB +City: Calverton, state: Maryland, Lat: 39.0578, Lng: -76.9488, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gateway, Alaska 61.5668 -149.2417 matched with DB +City: Gateway, state: Florida, Lat: 26.5793, Lng: -81.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Oregon 45.0960 -123.3983 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Indiana 41.0591 -86.1959 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Indiana 41.0591 -86.1959 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Indiana 41.0591 -86.1959 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Indiana 41.0591 -86.1959 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Texas 32.5312 -94.8564 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Texas 32.5312 -94.8564 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Ohio 39.0448 -82.6458 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northlake, Texas 33.0809 -97.2548 matched with DB +City: Northlake, state: Illinois, Lat: 41.9142, Lng: -87.9054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Michigan 42.7306 -82.7953 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Michigan 42.7306 -82.7953 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elsmere, Delaware 39.7384 -75.5946 matched with DB +City: Elsmere, state: Kentucky, Lat: 38.9948, Lng: -84.6017, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southgate, Florida 27.3066 -82.5107 matched with DB +City: Southgate, state: Michigan, Lat: 42.2047, Lng: -83.2057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestwood, Kentucky 38.3355 -85.4839 matched with DB +City: Crestwood, state: Missouri, Lat: 38.5569, Lng: -90.3783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Crestwood, Kentucky 38.3355 -85.4839 matched with DB +City: Crestwood, state: Illinois, Lat: 41.6454, Lng: -87.7397, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Torrington, Wyoming 42.0653 -104.1737 matched with DB +City: Torrington, state: Connecticut, Lat: 41.8349, Lng: -73.1282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Michigan 43.1267 -85.5582 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Missouri 38.5935 -90.3826 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Missouri 38.5935 -90.3826 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Missouri 38.5935 -90.3826 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chillicothe, Illinois 40.9158 -89.5020 matched with DB +City: Chillicothe, state: Missouri, Lat: 39.7953, Lng: -93.5499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chillicothe, Illinois 40.9158 -89.5020 matched with DB +City: Chillicothe, state: Ohio, Lat: 39.3393, Lng: -82.9939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Colorado 39.6442 -106.5130 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Colorado 39.6442 -106.5130 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, New Mexico 35.1318 -106.2151 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, New Mexico 35.1318 -106.2151 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean City, Florida 30.4398 -86.6071 matched with DB +City: Ocean City, state: New Jersey, Lat: 39.2681, Lng: -74.602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Iowa 42.4621 -91.9027 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Iowa 42.4621 -91.9027 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Iowa 42.4621 -91.9027 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Iowa 42.4621 -91.9027 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Alaska 61.5971 -149.1148 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Alaska 61.5971 -149.1148 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, South Carolina 33.8676 -79.7534 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 41.3936 -79.8425 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Colorado 39.6468 -105.0182 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Mississippi 33.1224 -89.0553 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Mississippi 33.1224 -89.0553 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Mississippi 33.1224 -89.0553 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vandalia, Illinois 38.9754 -89.1117 matched with DB +City: Vandalia, state: Ohio, Lat: 39.8791, Lng: -84.193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal Lake, Florida 28.0371 -81.9064 matched with DB +City: Crystal Lake, state: Illinois, Lat: 42.2333, Lng: -88.3351, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Texas 33.2100 -97.7708 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Texas 33.2100 -97.7708 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Missouri 38.8508 -94.3377 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Missouri 38.8508 -94.3377 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Missouri 38.8508 -94.3377 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Missouri 38.8508 -94.3377 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Washington 47.5519 -122.5517 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Washington 47.5519 -122.5517 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Washington 47.5519 -122.5517 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Washington 47.5519 -122.5517 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Washington 47.5519 -122.5517 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Washington 47.5519 -122.5517 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Pennsylvania 40.0049 -79.0778 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Pennsylvania 40.0049 -79.0778 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Pennsylvania 40.0049 -79.0778 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Utah 40.5183 -111.4746 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Texas 30.3640 -103.6650 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Texas 30.3640 -103.6650 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Indiana 39.7843 -85.9458 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Indiana 39.7843 -85.9458 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewistown, Montana 47.0514 -109.4524 matched with DB +City: Lewistown, state: Pennsylvania, Lat: 40.5964, Lng: -77.573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Tennessee 35.8713 -84.4959 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Tennessee 35.8713 -84.4959 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Tennessee 35.8713 -84.4959 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, Ohio 41.5015 -83.7367 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Missouri 39.2755 -93.9729 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Missouri 39.2755 -93.9729 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Missouri 39.2755 -93.9729 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Missouri 39.2755 -93.9729 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Missouri 39.2755 -93.9729 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, Nebraska 42.2379 -97.0101 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, Nebraska 42.2379 -97.0101 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearfield, Pennsylvania 41.0216 -78.4390 matched with DB +City: Clearfield, state: Utah, Lat: 41.103, Lng: -112.0238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Ohio 41.8007 -80.9461 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Ohio 41.8007 -80.9461 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Pennsylvania 39.8864 -75.2964 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Pennsylvania 39.8864 -75.2964 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Maryland 39.4784 -76.2398 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Maryland 39.4784 -76.2398 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Maryland 39.4784 -76.2398 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Maryland 39.4784 -76.2398 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, New York 42.2515 -73.7859 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, New York 42.2515 -73.7859 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, New York 42.2515 -73.7859 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, New York 42.2515 -73.7859 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, New York 42.2515 -73.7859 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroeville, Alabama 31.5162 -87.3279 matched with DB +City: Monroeville, state: Pennsylvania, Lat: 40.4262, Lng: -79.7605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, California 40.3903 -122.3156 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dallas, North Carolina 35.3169 -81.1830 matched with DB +City: Dallas, state: Pennsylvania, Lat: 41.3608, Lng: -75.9656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, North Carolina 35.3169 -81.1830 matched with DB +City: Dallas, state: Georgia, Lat: 33.9152, Lng: -84.8416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, North Carolina 35.3169 -81.1830 matched with DB +City: Dallas, state: Oregon, Lat: 44.9221, Lng: -123.313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, North Carolina 35.3169 -81.1830 matched with DB +City: Dallas, state: Texas, Lat: 32.7935, Lng: -96.7667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patterson, Louisiana 29.6910 -91.3096 matched with DB +City: Patterson, state: California, Lat: 37.4758, Lng: -121.1536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Patterson, Louisiana 29.6910 -91.3096 matched with DB +City: Patterson, state: New York, Lat: 41.4849, Lng: -73.5921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blaine, Washington 48.9839 -122.7414 matched with DB +City: Blaine, state: Minnesota, Lat: 45.1696, Lng: -93.2077, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Florida 30.5039 -86.1391 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Florida 30.5039 -86.1391 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Florida 30.5039 -86.1391 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Florida 30.5039 -86.1391 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Michigan 42.8094 -82.7518 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Michigan 42.8094 -82.7518 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Michigan 42.8094 -82.7518 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Michigan 42.8094 -82.7518 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Michigan 42.8094 -82.7518 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Arkansas 35.4919 -94.2165 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, West Virginia 37.3689 -81.0961 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, West Virginia 37.3689 -81.0961 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, West Virginia 37.3689 -81.0961 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Mississippi 31.2564 -89.8266 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Mississippi 31.2564 -89.8266 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Mississippi 31.2564 -89.8266 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Mississippi 31.2564 -89.8266 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Mississippi 31.2564 -89.8266 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Mississippi 31.2564 -89.8266 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron Park, Texas 25.9706 -97.4775 matched with DB +City: Cameron Park, state: California, Lat: 38.6738, Lng: -120.9872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, New York 43.2197 -78.3888 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendora, New Jersey 39.8405 -75.0677 matched with DB +City: Glendora, state: California, Lat: 34.1449, Lng: -117.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Villa Park, California 33.8180 -117.8104 matched with DB +City: Villa Park, state: Illinois, Lat: 41.8865, Lng: -87.9779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Virginia 38.8750 -78.5160 matched with DB +City: Woodstock, state: Illinois, Lat: 42.3096, Lng: -88.4353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodstock, Virginia 38.8750 -78.5160 matched with DB +City: Woodstock, state: Georgia, Lat: 34.1026, Lng: -84.5091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Germantown, Ohio 39.6325 -84.3645 matched with DB +City: Germantown, state: Wisconsin, Lat: 43.2343, Lng: -88.1217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Ohio 39.6325 -84.3645 matched with DB +City: Germantown, state: Maryland, Lat: 39.1755, Lng: -77.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Ohio 39.6325 -84.3645 matched with DB +City: Germantown, state: Tennessee, Lat: 35.0829, Lng: -89.7824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Pennsylvania 41.2404 -75.9507 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Pennsylvania 41.2404 -75.9507 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Pennsylvania 41.2404 -75.9507 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Pennsylvania 41.2404 -75.9507 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Pennsylvania 41.2404 -75.9507 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Pennsylvania 41.2404 -75.9507 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Kentucky 36.8412 -84.8502 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, Ohio 41.2809 -82.0380 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, Ohio 41.2809 -82.0380 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Pennsylvania 39.7858 -75.9801 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Pennsylvania 39.7858 -75.9801 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Pennsylvania 39.7858 -75.9801 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Pennsylvania 39.7858 -75.9801 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Pennsylvania 39.7858 -75.9801 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Virginia 37.7786 -79.9867 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Virginia 37.7786 -79.9867 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Virginia 37.7786 -79.9867 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Virginia 37.7786 -79.9867 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Virginia 37.7786 -79.9867 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Virginia 36.8379 -81.5156 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Virginia 36.8379 -81.5156 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Virginia 36.8379 -81.5156 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Virginia 36.8379 -81.5156 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Virginia 36.8379 -81.5156 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesboro, Georgia 33.0909 -82.0145 matched with DB +City: Waynesboro, state: Pennsylvania, Lat: 39.7524, Lng: -77.5822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waynesboro, Georgia 33.0909 -82.0145 matched with DB +City: Waynesboro, state: Virginia, Lat: 38.0674, Lng: -78.9014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Wisconsin 42.7781 -89.2967 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Georgia 34.9295 -85.2940 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Minnesota 44.7699 -94.1510 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northfield, Illinois 42.1025 -87.7791 matched with DB +City: Northfield, state: Minnesota, Lat: 44.455, Lng: -93.1698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salida, Colorado 38.5298 -105.9979 matched with DB +City: Salida, state: California, Lat: 37.7083, Lng: -121.0842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Wisconsin 42.7750 -88.9429 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Wisconsin 42.7750 -88.9429 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Wisconsin 42.7750 -88.9429 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Wisconsin 42.7750 -88.9429 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Wisconsin 42.7750 -88.9429 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Wisconsin 42.7750 -88.9429 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hempstead, Texas 30.1006 -96.0777 matched with DB +City: Hempstead, state: New York, Lat: 40.6629, Lng: -73.6089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Emporia, Virginia 36.6953 -77.5356 matched with DB +City: Emporia, state: Kansas, Lat: 38.4028, Lng: -96.1932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Kentucky 39.1127 -84.4639 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Kentucky 39.1127 -84.4639 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Kentucky 39.1127 -84.4639 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Illinois 39.1752 -89.4723 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Texas 30.7100 -94.9381 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Texas 30.7100 -94.9381 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, New Jersey 40.9933 -73.9510 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, New Jersey 40.9933 -73.9510 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carver, Minnesota 44.7648 -93.6537 matched with DB +City: Carver, state: Massachusetts, Lat: 41.8739, Lng: -70.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Brighton, Pennsylvania 40.7355 -80.3090 matched with DB +City: New Brighton, state: Minnesota, Lat: 45.0658, Lng: -93.206, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Four Corners, Montana 45.6697 -111.1785 matched with DB +City: Four Corners, state: Texas, Lat: 29.6705, Lng: -95.6596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Four Corners, Montana 45.6697 -111.1785 matched with DB +City: Four Corners, state: Oregon, Lat: 44.929, Lng: -122.9732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, North Carolina 35.9693 -77.9554 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Kentucky 39.1012 -84.4775 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Kentucky 39.1012 -84.4775 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Kentucky 39.1012 -84.4775 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterford, Wisconsin 42.7645 -88.2160 matched with DB +City: Waterford, state: California, Lat: 37.6429, Lng: -120.7553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterford, Wisconsin 42.7645 -88.2160 matched with DB +City: Waterford, state: New Jersey, Lat: 39.7415, Lng: -74.8207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, New Jersey 40.6811 -74.5493 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Utah 41.4648 -112.0401 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Texas 33.0571 -96.6244 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Texas 33.0571 -96.6244 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Citrus Park, Arizona 33.5300 -112.4441 matched with DB +City: Citrus Park, state: Florida, Lat: 28.073, Lng: -82.5628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Pennsylvania 41.4051 -80.3836 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Oak, Iowa 41.0140 -95.2250 matched with DB +City: Red Oak, state: Texas, Lat: 32.5212, Lng: -96.7866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White City, Utah 40.5666 -111.8636 matched with DB +City: White City, state: Oregon, Lat: 42.4316, Lng: -122.8322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Tennessee 36.5241 -86.0304 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Tennessee 36.5241 -86.0304 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Tennessee 36.5241 -86.0304 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Tennessee 36.5241 -86.0304 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Missouri 38.9988 -93.9666 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, Wisconsin 43.9704 -88.9504 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Happy Valley, California 40.4662 -122.4207 matched with DB +City: Happy Valley, state: Oregon, Lat: 45.4358, Lng: -122.5081, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Missouri 40.0818 -93.6030 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Missouri 40.0818 -93.6030 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Missouri 40.0818 -93.6030 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilmington, Illinois 41.3207 -88.1640 matched with DB +City: Wilmington, state: Delaware, Lat: 39.7415, Lng: -75.5416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Illinois 41.3207 -88.1640 matched with DB +City: Wilmington, state: Ohio, Lat: 39.4362, Lng: -83.8141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Illinois 41.3207 -88.1640 matched with DB +City: Wilmington, state: North Carolina, Lat: 34.2099, Lng: -77.8866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wilmington, Illinois 41.3207 -88.1640 matched with DB +City: Wilmington, state: Massachusetts, Lat: 42.5609, Lng: -71.1654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Castle, Delaware 39.6681 -75.5697 matched with DB +City: New Castle, state: Pennsylvania, Lat: 40.9956, Lng: -80.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Delaware 39.6681 -75.5697 matched with DB +City: New Castle, state: Indiana, Lat: 39.9191, Lng: -85.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Delaware 39.6681 -75.5697 matched with DB +City: New Castle, state: New York, Lat: 41.1841, Lng: -73.7721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Illinois 41.3362 -89.2038 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Illinois 41.3362 -89.2038 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Illinois 41.3362 -89.2038 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maplewood, Washington 47.3715 -122.5689 matched with DB +City: Maplewood, state: Minnesota, Lat: 44.9842, Lng: -93.0247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maplewood, Washington 47.3715 -122.5689 matched with DB +City: Maplewood, state: New Jersey, Lat: 40.733, Lng: -74.2712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, South Carolina 34.7074 -82.4651 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Exeter, Pennsylvania 41.3337 -75.8213 matched with DB +City: Exeter, state: California, Lat: 36.2941, Lng: -119.1459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Pennsylvania 41.3337 -75.8213 matched with DB +City: Exeter, state: New Hampshire, Lat: 42.9901, Lng: -70.9646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Pennsylvania 41.3337 -75.8213 matched with DB +City: Exeter, state: Pennsylvania, Lat: 40.3139, Lng: -75.834, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Illinois 40.7148 -89.2775 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Illinois 40.7148 -89.2775 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Georgia 33.2920 -83.9679 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White City, Florida 27.3721 -80.3404 matched with DB +City: White City, state: Oregon, Lat: 42.4316, Lng: -122.8322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Indiana 40.7455 -86.7668 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Ohio 39.5807 -84.3201 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowie, Texas 33.5566 -97.8440 matched with DB +City: Bowie, state: Maryland, Lat: 38.9549, Lng: -76.7406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Wisconsin 43.3354 -89.0300 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Wisconsin 43.3354 -89.0300 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Wisconsin 43.3354 -89.0300 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Wisconsin 43.3354 -89.0300 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Wisconsin 43.3354 -89.0300 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Luling, Texas 29.6814 -97.6468 matched with DB +City: Luling, state: Louisiana, Lat: 29.9008, Lng: -90.3523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Texas 33.1136 -94.1672 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macon, Missouri 39.7426 -92.4711 matched with DB +City: Macon, state: Georgia, Lat: 32.8065, Lng: -83.6974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunset, Utah 41.1392 -112.0285 matched with DB +City: Sunset, state: Florida, Lat: 25.706, Lng: -80.353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, Michigan 42.3132 -84.0188 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, Michigan 42.3132 -84.0188 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Maryland 39.1516 -76.9163 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Maryland 39.1516 -76.9163 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest, Mississippi 32.3595 -89.4761 matched with DB +City: Forest, state: Virginia, Lat: 37.3728, Lng: -79.2831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Arkansas 33.6113 -92.0678 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Arkansas 33.6113 -92.0678 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Arkansas 33.6113 -92.0678 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Arkansas 33.6113 -92.0678 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Arkansas 33.6113 -92.0678 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Maryland 39.6585 -76.8881 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Maryland 39.6585 -76.8881 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Maryland 39.6585 -76.8881 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Maryland 39.6585 -76.8881 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Maryland 39.6585 -76.8881 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Maryland 39.6585 -76.8881 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Ohio 39.2039 -84.3978 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Ohio 39.2039 -84.3978 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollywood, South Carolina 32.7520 -80.2118 matched with DB +City: Hollywood, state: Florida, Lat: 26.0293, Lng: -80.1679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temple, Georgia 33.7342 -85.0289 matched with DB +City: Temple, state: Texas, Lat: 31.1068, Lng: -97.3891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Iowa 40.7292 -92.8716 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Iowa 40.7292 -92.8716 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Imperial, Missouri 38.3673 -90.3705 matched with DB +City: Imperial, state: California, Lat: 32.839, Lng: -115.572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesville, Missouri 37.8201 -92.2202 matched with DB +City: Waynesville, state: North Carolina, Lat: 35.4854, Lng: -82.9996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Texas 30.8608 -96.9763 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cicero, Indiana 40.1246 -86.0242 matched with DB +City: Cicero, state: Illinois, Lat: 41.8445, Lng: -87.7593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cicero, Indiana 40.1246 -86.0242 matched with DB +City: Cicero, state: New York, Lat: 43.1662, Lng: -76.0662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke, Alabama 33.1453 -85.3694 matched with DB +City: Roanoke, state: Virginia, Lat: 37.2785, Lng: -79.9581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roanoke, Alabama 33.1453 -85.3694 matched with DB +City: Roanoke, state: Texas, Lat: 33.0144, Lng: -97.2276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Alabama 33.9447 -85.9322 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Pasadena, Florida 27.7526 -82.7394 matched with DB +City: South Pasadena, state: California, Lat: 34.1103, Lng: -118.1573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rensselaer, Indiana 40.9375 -87.1684 matched with DB +City: Rensselaer, state: New York, Lat: 42.6465, Lng: -73.7328, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: California, Pennsylvania 40.0692 -79.9152 matched with DB +City: California, state: Maryland, Lat: 38.2969, Lng: -76.4949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kensington, California 37.9083 -122.2805 matched with DB +City: Kensington, state: Connecticut, Lat: 41.6284, Lng: -72.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Byram, Connecticut 41.0011 -73.6528 matched with DB +City: Byram, state: Mississippi, Lat: 32.189, Lng: -90.2861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, New Jersey 39.5681 -75.4724 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Jersey 39.5681 -75.4724 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Jersey 39.5681 -75.4724 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Jersey 39.5681 -75.4724 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Jersey 39.5681 -75.4724 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Jersey 39.5681 -75.4724 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisburg, Pennsylvania 40.9641 -76.8901 matched with DB +City: Lewisburg, state: Tennessee, Lat: 35.451, Lng: -86.7901, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berkeley, Illinois 41.8891 -87.9115 matched with DB +City: Berkeley, state: California, Lat: 37.8722, Lng: -122.276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berkeley, Illinois 41.8891 -87.9115 matched with DB +City: Berkeley, state: New Jersey, Lat: 39.9156, Lng: -74.1923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central, South Carolina 34.7235 -82.7788 matched with DB +City: Central, state: Louisiana, Lat: 30.5593, Lng: -91.0369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Michigan 42.3246 -85.2371 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hyde Park, Utah 41.8008 -111.8121 matched with DB +City: Hyde Park, state: New York, Lat: 41.8011, Lng: -73.906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Titusville, Pennsylvania 41.6273 -79.6699 matched with DB +City: Titusville, state: Florida, Lat: 28.5727, Lng: -80.8193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, South Carolina 34.7051 -81.2132 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, South Carolina 34.7051 -81.2132 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Town and Country, Washington 47.7259 -117.4220 matched with DB +City: Town and Country, state: Missouri, Lat: 38.6317, Lng: -90.479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gladstone, Michigan 45.8521 -87.0358 matched with DB +City: Gladstone, state: Missouri, Lat: 39.2134, Lng: -94.5592, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gladstone, Michigan 45.8521 -87.0358 matched with DB +City: Gladstone, state: Oregon, Lat: 45.3864, Lng: -122.5934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Kentucky 36.7393 -84.1647 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center, Texas 31.7930 -94.1795 matched with DB +City: Center, state: Pennsylvania, Lat: 40.6483, Lng: -80.2977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apple Valley, Ohio 40.4389 -82.3481 matched with DB +City: Apple Valley, state: Minnesota, Lat: 44.7457, Lng: -93.2004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Apple Valley, Ohio 40.4389 -82.3481 matched with DB +City: Apple Valley, state: California, Lat: 34.5352, Lng: -117.2109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparks, Texas 31.6727 -106.2399 matched with DB +City: Sparks, state: Nevada, Lat: 39.5736, Lng: -119.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolivar, Tennessee 35.2645 -89.0118 matched with DB +City: Bolivar, state: Missouri, Lat: 37.6059, Lng: -93.4175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Michigan 42.6290 -83.0218 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnstown, Ohio 40.1500 -82.6881 matched with DB +City: Johnstown, state: Pennsylvania, Lat: 40.326, Lng: -78.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnstown, Ohio 40.1500 -82.6881 matched with DB +City: Johnstown, state: Colorado, Lat: 40.3499, Lng: -104.9482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hugo, Oklahoma 34.0118 -95.5115 matched with DB +City: Hugo, state: Minnesota, Lat: 45.1671, Lng: -92.9588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bangor, Pennsylvania 40.8678 -75.2085 matched with DB +City: Bangor, state: Maine, Lat: 44.8323, Lng: -68.7906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Wisconsin 42.5377 -88.0151 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Wisconsin 42.5377 -88.0151 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Wisconsin 42.5377 -88.0151 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Wisconsin 42.5377 -88.0151 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Wisconsin 42.5377 -88.0151 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, New Jersey 38.9881 -74.8195 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, New Jersey 38.9881 -74.8195 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Indiana 40.2630 -85.6737 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Indiana 40.2630 -85.6737 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Indiana 40.2630 -85.6737 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Indiana 40.2630 -85.6737 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceburg, Indiana 39.0986 -84.8713 matched with DB +City: Lawrenceburg, state: Kentucky, Lat: 38.0332, Lng: -84.9031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrenceburg, Indiana 39.0986 -84.8713 matched with DB +City: Lawrenceburg, state: Tennessee, Lat: 35.2497, Lng: -87.3325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Meade, Florida 27.7645 -81.8058 matched with DB +City: Fort Meade, state: Maryland, Lat: 39.1061, Lng: -76.7437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Georgia 34.2236 -83.8851 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Iowa 41.0446 -95.7406 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, Tennessee 35.8152 -88.7901 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madisonville, Tennessee 35.5232 -84.3630 matched with DB +City: Madisonville, state: Kentucky, Lat: 37.3409, Lng: -87.5034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Iowa 42.4854 -91.4557 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Iowa 42.4854 -91.4557 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Iowa 42.4854 -91.4557 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Iowa 42.4854 -91.4557 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Iowa 42.4854 -91.4557 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Iowa 42.4854 -91.4557 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Minnesota 44.4453 -92.2796 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morris, Minnesota 45.5857 -95.9046 matched with DB +City: Morris, state: Illinois, Lat: 41.3749, Lng: -88.4304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morris, Minnesota 45.5857 -95.9046 matched with DB +City: Morris, state: New Jersey, Lat: 40.7959, Lng: -74.4945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ada, Ohio 40.7681 -83.8251 matched with DB +City: Ada, state: Oklahoma, Lat: 34.7662, Lng: -96.6681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Maryland 39.4237 -76.5685 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Maryland 39.4237 -76.5685 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Maryland 39.4237 -76.5685 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savannah, Missouri 39.9391 -94.8279 matched with DB +City: Savannah, state: Georgia, Lat: 32.0286, Lng: -81.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: King City, Oregon 45.4012 -122.8069 matched with DB +City: King City, state: California, Lat: 36.2164, Lng: -121.133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluefield, Virginia 37.2351 -81.2751 matched with DB +City: Bluefield, state: West Virginia, Lat: 37.2608, Lng: -81.2143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Tennessee 35.9584 -85.8211 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Tennessee 35.9584 -85.8211 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, Maryland 38.3310 -75.2148 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortez, Florida 27.4668 -82.6688 matched with DB +City: Cortez, state: Colorado, Lat: 37.3503, Lng: -108.5768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, Colorado 39.5458 -104.8533 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, Colorado 39.5458 -104.8533 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sulphur, Oklahoma 34.4979 -96.9898 matched with DB +City: Sulphur, state: Louisiana, Lat: 30.2286, Lng: -93.3566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Arizona 32.0617 -110.9485 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Arizona 32.0617 -110.9485 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Arizona 32.0617 -110.9485 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, California 38.3485 -120.7728 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Arkansas 34.2996 -92.4223 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewater, Colorado 39.7508 -105.0627 matched with DB +City: Edgewater, state: New Jersey, Lat: 40.8237, Lng: -73.974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Colorado 39.7508 -105.0627 matched with DB +City: Edgewater, state: Florida, Lat: 28.9594, Lng: -80.9406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Colorado 39.7508 -105.0627 matched with DB +City: Edgewater, state: Maryland, Lat: 38.9373, Lng: -76.5572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Pennsylvania 40.1042 -75.3437 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Pennsylvania 40.1042 -75.3437 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terryville, Connecticut 41.6784 -73.0064 matched with DB +City: Terryville, state: New York, Lat: 40.9093, Lng: -73.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Maryland 39.4415 -77.5347 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, California 36.3493 -119.4206 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, California 36.3493 -119.4206 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, Mississippi 33.8287 -88.5539 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Mississippi 33.8287 -88.5539 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Mississippi 33.8287 -88.5539 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Mississippi 33.8287 -88.5539 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Mississippi 33.8287 -88.5539 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westmont, Pennsylvania 40.3194 -78.9525 matched with DB +City: Westmont, state: Illinois, Lat: 41.7948, Lng: -87.9742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, Pennsylvania 40.3194 -78.9525 matched with DB +City: Westmont, state: California, Lat: 33.9417, Lng: -118.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westmont, Pennsylvania 40.3194 -78.9525 matched with DB +City: Westmont, state: New Jersey, Lat: 39.9082, Lng: -75.0551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redland, Alabama 32.4754 -86.1375 matched with DB +City: Redland, state: Maryland, Lat: 39.1339, Lng: -77.1464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Texas 31.3287 -94.8014 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Texas 31.3287 -94.8014 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Texas 31.3287 -94.8014 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Texas 31.3287 -94.8014 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Texas 31.3287 -94.8014 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Ohio 40.6800 -82.5793 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Ohio 40.6800 -82.5793 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Ohio 40.6800 -82.5793 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Ohio 40.6800 -82.5793 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Ohio 40.6800 -82.5793 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Tennessee 35.9347 -85.4726 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Tennessee 35.9347 -85.4726 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Maryland 38.9363 -76.8442 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Maryland 38.9363 -76.8442 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Maryland 38.9363 -76.8442 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant View, Tennessee 36.3893 -87.0455 matched with DB +City: Pleasant View, state: Utah, Lat: 41.3249, Lng: -112.0011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pendleton, Indiana 40.0066 -85.7711 matched with DB +City: Pendleton, state: Oregon, Lat: 45.6757, Lng: -118.8201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New Jersey 41.1101 -74.5886 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shenandoah, Iowa 40.7582 -95.3720 matched with DB +City: Shenandoah, state: Louisiana, Lat: 30.4019, Lng: -91.002, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edwardsville, Pennsylvania 41.2613 -75.9071 matched with DB +City: Edwardsville, state: Illinois, Lat: 38.7922, Lng: -89.9874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hills, Tennessee 36.0652 -86.8403 matched with DB +City: Forest Hills, state: Michigan, Lat: 42.9577, Lng: -85.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange, Virginia 38.2485 -78.1129 matched with DB +City: Orange, state: California, Lat: 33.8038, Lng: -117.8218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Orange, Virginia 38.2485 -78.1129 matched with DB +City: Orange, state: Texas, Lat: 30.1226, Lng: -93.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Mount, Virginia 37.0045 -79.8854 matched with DB +City: Rocky Mount, state: North Carolina, Lat: 35.9685, Lng: -77.804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Georgia 31.2048 -83.2478 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Minnesota 45.5688 -93.5899 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Minnesota 45.5688 -93.5899 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Minnesota 45.5688 -93.5899 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abbeville, South Carolina 34.1787 -82.3774 matched with DB +City: Abbeville, state: Louisiana, Lat: 29.9751, Lng: -92.1265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valparaiso, Florida 30.4926 -86.5079 matched with DB +City: Valparaiso, state: Indiana, Lat: 41.4783, Lng: -87.0506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverton, Ohio 39.1884 -84.4010 matched with DB +City: Silverton, state: Oregon, Lat: 45.003, Lng: -122.7808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mineola, Texas 32.6462 -95.4774 matched with DB +City: Mineola, state: New York, Lat: 40.747, Lng: -73.6394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Castle, Colorado 39.5776 -107.5267 matched with DB +City: New Castle, state: Pennsylvania, Lat: 40.9956, Lng: -80.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Colorado 39.5776 -107.5267 matched with DB +City: New Castle, state: Indiana, Lat: 39.9191, Lng: -85.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Colorado 39.5776 -107.5267 matched with DB +City: New Castle, state: New York, Lat: 41.1841, Lng: -73.7721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avondale, Louisiana 29.9072 -90.1933 matched with DB +City: Avondale, state: Arizona, Lat: 33.3873, Lng: -112.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Mississippi 32.7431 -89.5337 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westlake, Louisiana 30.2606 -93.2638 matched with DB +City: Westlake, state: Ohio, Lat: 41.4524, Lng: -81.9294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tiffin, Iowa 41.7064 -91.6583 matched with DB +City: Tiffin, state: Ohio, Lat: 41.1165, Lng: -83.1805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holbrook, Arizona 34.9044 -110.1672 matched with DB +City: Holbrook, state: New York, Lat: 40.7944, Lng: -73.07, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Holbrook, Arizona 34.9044 -110.1672 matched with DB +City: Holbrook, state: Massachusetts, Lat: 42.1471, Lng: -71.0057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Maryland 38.8770 -75.8264 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vail, Colorado 39.6385 -106.3613 matched with DB +City: Vail, state: Arizona, Lat: 32.0217, Lng: -110.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Alabama 33.9334 -87.7961 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Alabama 33.9334 -87.7961 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springville, Alabama 33.7643 -86.4742 matched with DB +City: Springville, state: Utah, Lat: 40.1638, Lng: -111.6205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Indiana 39.6608 -87.4045 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Kentucky 37.1036 -85.3073 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Kentucky 37.1036 -85.3073 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Kentucky 37.1036 -85.3073 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Kentucky 37.1036 -85.3073 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Kentucky 37.1036 -85.3073 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Kentucky 37.1036 -85.3073 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Montana 46.2527 -114.1598 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Montana 46.2527 -114.1598 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Montana 46.2527 -114.1598 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Montana 46.2527 -114.1598 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flower Hill, New York 40.8075 -73.6755 matched with DB +City: Flower Hill, state: Maryland, Lat: 39.1676, Lng: -77.1824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Tennessee 35.5483 -87.1872 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Tennessee 35.5483 -87.1872 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Tennessee 35.5483 -87.1872 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Tennessee 35.5483 -87.1872 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Tennessee 35.5483 -87.1872 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Tennessee 35.5483 -87.1872 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arnold, Pennsylvania 40.5788 -79.7655 matched with DB +City: Arnold, state: Maryland, Lat: 39.0437, Lng: -76.4974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arnold, Pennsylvania 40.5788 -79.7655 matched with DB +City: Arnold, state: Missouri, Lat: 38.4297, Lng: -90.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Illinois 38.3798 -88.3723 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Illinois 38.3798 -88.3723 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Illinois 38.3798 -88.3723 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Illinois 38.3798 -88.3723 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, North Carolina 35.9751 -80.2204 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehouse, Ohio 41.5215 -83.7958 matched with DB +City: Whitehouse, state: Texas, Lat: 32.2222, Lng: -95.221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Louisiana 30.4881 -91.0448 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, Alabama 33.9269 -85.6149 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, Minnesota 43.9833 -94.6249 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Kentucky 36.8479 -88.3602 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orangeburg, New York 41.0488 -73.9408 matched with DB +City: Orangeburg, state: South Carolina, Lat: 33.4928, Lng: -80.8671, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edwardsville, Kansas 39.0765 -94.8166 matched with DB +City: Edwardsville, state: Illinois, Lat: 38.7922, Lng: -89.9874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortland, Illinois 41.9255 -88.6794 matched with DB +City: Cortland, state: New York, Lat: 42.6004, Lng: -76.1784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Missouri 38.7927 -92.2479 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Missouri 38.7927 -92.2479 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Missouri 38.7927 -92.2479 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Missouri 38.7927 -92.2479 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Missouri 38.7927 -92.2479 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Missouri 38.7927 -92.2479 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Hill, Missouri 38.6091 -90.3673 matched with DB +City: Rock Hill, state: South Carolina, Lat: 34.9415, Lng: -81.0241, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Alabama 31.5318 -87.8915 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berwick, Louisiana 29.7013 -91.2377 matched with DB +City: Berwick, state: Pennsylvania, Lat: 41.0555, Lng: -76.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown, Minnesota 44.9604 -93.8431 matched with DB +City: Watertown, state: South Dakota, Lat: 44.9094, Lng: -97.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Minnesota 44.9604 -93.8431 matched with DB +City: Watertown, state: New York, Lat: 43.9734, Lng: -75.9094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Minnesota 44.9604 -93.8431 matched with DB +City: Watertown, state: Wisconsin, Lat: 43.1893, Lng: -88.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, West Virginia 39.3409 -80.0162 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, West Virginia 39.3409 -80.0162 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Ridge, Florida 28.2669 -82.6257 matched with DB +City: River Ridge, state: Louisiana, Lat: 29.9593, Lng: -90.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centreville, Maryland 39.0420 -76.0630 matched with DB +City: Centreville, state: Virginia, Lat: 38.839, Lng: -77.4389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Illinois 42.2279 -88.3931 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 42.2279 -88.3931 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 42.2279 -88.3931 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 42.2279 -88.3931 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 42.2279 -88.3931 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Creve Coeur, Illinois 40.6426 -89.5981 matched with DB +City: Creve Coeur, state: Missouri, Lat: 38.662, Lng: -90.443, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawthorne, New York 41.1035 -73.7968 matched with DB +City: Hawthorne, state: New Jersey, Lat: 40.9579, Lng: -74.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hawthorne, New York 41.1035 -73.7968 matched with DB +City: Hawthorne, state: California, Lat: 33.9147, Lng: -118.3476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Falmouth, Virginia 38.3319 -77.4655 matched with DB +City: Falmouth, state: Maine, Lat: 43.7476, Lng: -70.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Falmouth, Virginia 38.3319 -77.4655 matched with DB +City: Falmouth, state: Massachusetts, Lat: 41.5913, Lng: -70.5912, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, Missouri 36.9179 -89.3343 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Missouri 36.9179 -89.3343 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Missouri 36.9179 -89.3343 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Hill, Virginia 36.7254 -78.1287 matched with DB +City: South Hill, state: Washington, Lat: 47.1198, Lng: -122.2853, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Illinois 38.6005 -89.8114 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, North Carolina 35.2450 -80.5212 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, North Carolina 35.2450 -80.5212 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, North Carolina 35.2450 -80.5212 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Louisiana 32.0355 -93.7004 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Louisiana 32.0355 -93.7004 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Louisiana 32.0355 -93.7004 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Louisiana 32.0355 -93.7004 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Missouri 37.6399 -91.5345 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Missouri 37.6399 -91.5345 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Missouri 37.6399 -91.5345 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Missouri 37.6399 -91.5345 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Missouri 37.6399 -91.5345 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Missouri 37.6399 -91.5345 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Nebraska 40.8645 -98.0078 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Nebraska 40.8645 -98.0078 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Nebraska 40.8645 -98.0078 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Nebraska 40.8645 -98.0078 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Indiana 40.1719 -84.9764 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Indiana 40.1719 -84.9764 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Indiana 40.1719 -84.9764 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Indiana 40.1719 -84.9764 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Indiana 40.1719 -84.9764 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsville, Maryland 39.4496 -76.4205 matched with DB +City: Kingsville, state: Texas, Lat: 27.5094, Lng: -97.861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmetto, Georgia 33.5310 -84.6678 matched with DB +City: Palmetto, state: Florida, Lat: 27.5251, Lng: -82.5749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highlands, New Jersey 40.4036 -73.9898 matched with DB +City: Highlands, state: New York, Lat: 41.3601, Lng: -74.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montebello, New York 41.1317 -74.1135 matched with DB +City: Montebello, state: California, Lat: 34.0155, Lng: -118.1108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Minnesota 45.0920 -93.7453 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boiling Springs, North Carolina 35.2522 -81.6636 matched with DB +City: Boiling Springs, state: South Carolina, Lat: 35.045, Lng: -81.9779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ellisville, Mississippi 31.5969 -89.2091 matched with DB +City: Ellisville, state: Missouri, Lat: 38.5897, Lng: -90.5884, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Georgia 31.9438 -81.1081 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Georgia 31.9438 -81.1081 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Georgia 31.9438 -81.1081 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Georgia 31.9438 -81.1081 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Georgia 31.9438 -81.1081 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Georgia 31.9438 -81.1081 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Louisiana 30.8346 -91.2080 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Falls, New York 43.0452 -74.8566 matched with DB +City: Little Falls, state: Minnesota, Lat: 45.9862, Lng: -94.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Little Falls, New York 43.0452 -74.8566 matched with DB +City: Little Falls, state: New Jersey, Lat: 40.8762, Lng: -74.2181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Mississippi 32.1557 -90.1225 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Mississippi 32.1557 -90.1225 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Mississippi 32.1557 -90.1225 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Mississippi 32.1557 -90.1225 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Mississippi 32.1557 -90.1225 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Mississippi 32.1557 -90.1225 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Missouri 39.1798 -93.8694 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Missouri 39.1798 -93.8694 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Missouri 39.1798 -93.8694 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Missouri 39.1798 -93.8694 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Missouri 39.1798 -93.8694 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollister, Missouri 36.6057 -93.2339 matched with DB +City: Hollister, state: California, Lat: 36.8555, Lng: -121.3986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Virginia 38.1937 -79.0082 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Virginia 38.1937 -79.0082 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Kentucky 38.4806 -82.6798 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Kentucky 38.4806 -82.6798 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Kentucky 38.4806 -82.6798 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Colorado 39.7036 -104.9352 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Colorado 39.7036 -104.9352 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Colorado 39.7036 -104.9352 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cornwall, Pennsylvania 40.2659 -76.4077 matched with DB +City: Cornwall, state: New York, Lat: 41.4195, Lng: -74.054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Staunton, Illinois 39.0116 -89.7910 matched with DB +City: Staunton, state: Virginia, Lat: 38.1593, Lng: -79.0611, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesboro, Mississippi 31.6774 -88.6353 matched with DB +City: Waynesboro, state: Pennsylvania, Lat: 39.7524, Lng: -77.5822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waynesboro, Mississippi 31.6774 -88.6353 matched with DB +City: Waynesboro, state: Virginia, Lat: 38.0674, Lng: -78.9014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Georgia 33.5793 -83.4758 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Georgia 33.5793 -83.4758 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Georgia 33.5793 -83.4758 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Georgia 33.5793 -83.4758 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Georgia 33.5793 -83.4758 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centralia, Missouri 39.2105 -92.1342 matched with DB +City: Centralia, state: Illinois, Lat: 38.5224, Lng: -89.1232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centralia, Missouri 39.2105 -92.1342 matched with DB +City: Centralia, state: Washington, Lat: 46.7223, Lng: -122.9696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, North Carolina 35.5103 -80.9783 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunnyside, California 36.7294 -119.6945 matched with DB +City: Sunnyside, state: Washington, Lat: 46.3157, Lng: -120.0058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenacres, California 35.3831 -119.1184 matched with DB +City: Greenacres, state: Florida, Lat: 26.627, Lng: -80.1371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beecher, Illinois 41.3500 -87.6172 matched with DB +City: Beecher, state: Michigan, Lat: 43.0903, Lng: -83.7039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Washington 46.1899 -122.9125 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Washington 46.1899 -122.9125 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Washington 46.1899 -122.9125 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Washington 46.1899 -122.9125 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Washington 46.1899 -122.9125 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Missouri 38.2598 -94.3394 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Missouri 38.2598 -94.3394 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Illinois 39.5763 -89.7440 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaufort, North Carolina 34.7300 -76.6493 matched with DB +City: Beaufort, state: South Carolina, Lat: 32.4597, Lng: -80.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beavercreek, Oregon 45.2756 -122.5136 matched with DB +City: Beavercreek, state: Ohio, Lat: 39.731, Lng: -84.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Iowa 41.9232 -91.4243 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Iowa 41.9232 -91.4243 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Iowa 41.9232 -91.4243 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Iowa 41.9232 -91.4243 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Iowa 41.9232 -91.4243 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Oklahoma 36.2837 -97.3094 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Hill, Connecticut 41.3536 -72.0517 matched with DB +City: Long Hill, state: New Jersey, Lat: 40.6838, Lng: -74.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: California, Missouri 38.6303 -92.5670 matched with DB +City: California, state: Maryland, Lat: 38.2969, Lng: -76.4949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Missouri 37.1050 -93.8190 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Missouri 37.1050 -93.8190 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Missouri 37.1050 -93.8190 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Missouri 37.1050 -93.8190 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Missouri 37.1050 -93.8190 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coldwater, Ohio 40.4828 -84.6321 matched with DB +City: Coldwater, state: Michigan, Lat: 41.9465, Lng: -84.9989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jessup, Pennsylvania 41.4622 -75.5478 matched with DB +City: Jessup, state: Maryland, Lat: 39.1488, Lng: -76.7772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Michigan 43.4633 -85.9537 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Michigan 43.4633 -85.9537 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Michigan 43.4633 -85.9537 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Village, California 38.0054 -121.3340 matched with DB +City: Lincoln Village, state: Ohio, Lat: 39.9532, Lng: -83.1314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Mississippi 34.2616 -88.4021 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Mississippi 34.2616 -88.4021 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestline, Ohio 40.7836 -82.7458 matched with DB +City: Crestline, state: California, Lat: 34.2486, Lng: -117.2887, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Washington 47.9642 -117.4398 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Washington 47.9642 -117.4398 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madisonville, Texas 30.9538 -95.9091 matched with DB +City: Madisonville, state: Kentucky, Lat: 37.3409, Lng: -87.5034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University, Mississippi 34.3655 -89.5379 matched with DB +City: University, state: Florida, Lat: 28.0771, Lng: -82.4335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Wyoming 44.3427 -106.7139 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Wyoming 44.3427 -106.7139 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Kentucky 37.2121 -87.1780 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Maryland 38.9677 -76.2824 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Maryland 38.9677 -76.2824 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ottawa, Ohio 41.0202 -84.0354 matched with DB +City: Ottawa, state: Kansas, Lat: 38.5996, Lng: -95.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ottawa, Ohio 41.0202 -84.0354 matched with DB +City: Ottawa, state: Illinois, Lat: 41.3555, Lng: -88.8261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, Texas 26.9289 -99.2614 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Vermont 44.9372 -72.2090 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Vermont 44.9372 -72.2090 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Vermont 44.9372 -72.2090 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winona, Mississippi 33.4899 -89.7280 matched with DB +City: Winona, state: Minnesota, Lat: 44.0505, Lng: -91.6684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Tennessee 36.4222 -82.4293 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Tennessee 36.4222 -82.4293 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Tennessee 36.4222 -82.4293 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, Texas 29.9129 -96.8768 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Texas 29.9129 -96.8768 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Texas 29.9129 -96.8768 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jonesboro, Georgia 33.5211 -84.3548 matched with DB +City: Jonesboro, state: Arkansas, Lat: 35.8212, Lng: -90.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Park, Colorado 38.4255 -105.2132 matched with DB +City: Lincoln Park, state: New Jersey, Lat: 40.9239, Lng: -74.3035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln Park, Colorado 38.4255 -105.2132 matched with DB +City: Lincoln Park, state: Michigan, Lat: 42.2432, Lng: -83.1811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayland, Michigan 42.6725 -85.6408 matched with DB +City: Wayland, state: Massachusetts, Lat: 42.3586, Lng: -71.3594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, North Carolina 35.5516 -82.8407 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, North Carolina 35.5516 -82.8407 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, North Carolina 35.5516 -82.8407 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, North Carolina 35.5516 -82.8407 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, North Carolina 35.5516 -82.8407 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, North Carolina 35.5516 -82.8407 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sullivan, Illinois 39.5951 -88.6084 matched with DB +City: Sullivan, state: New York, Lat: 43.0923, Lng: -75.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, North Carolina 34.7720 -76.8772 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, North Carolina 34.7720 -76.8772 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, North Carolina 34.7720 -76.8772 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Carlos, Arizona 33.3500 -110.4654 matched with DB +City: San Carlos, state: California, Lat: 37.4982, Lng: -122.2677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perryville, Maryland 39.5737 -76.0668 matched with DB +City: Perryville, state: Missouri, Lat: 37.7263, Lng: -89.8759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scottdale, Pennsylvania 40.1034 -79.5898 matched with DB +City: Scottdale, state: Georgia, Lat: 33.795, Lng: -84.2634, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Oregon 45.2463 -123.1115 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Oregon 45.2463 -123.1115 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Oregon 45.2463 -123.1115 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Oregon 45.2463 -123.1115 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phoenix, Oregon 42.2749 -122.8154 matched with DB +City: Phoenix, state: Arizona, Lat: 33.5722, Lng: -112.0892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ludlow, Kentucky 39.0904 -84.5498 matched with DB +City: Ludlow, state: Massachusetts, Lat: 42.1921, Lng: -72.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburg, Texas 32.9996 -94.9668 matched with DB +City: Pittsburg, state: Kansas, Lat: 37.4129, Lng: -94.6985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pittsburg, Texas 32.9996 -94.9668 matched with DB +City: Pittsburg, state: California, Lat: 38.0182, Lng: -121.8965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Ohio 41.8783 -80.7461 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Ohio 41.8783 -80.7461 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerville, Georgia 34.4788 -85.3491 matched with DB +City: Summerville, state: South Carolina, Lat: 33.0016, Lng: -80.1799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Bárbara, Puerto Rico 18.3954 -65.9172 matched with DB +City: Santa Barbara, state: California, Lat: 34.4285, Lng: -119.7202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, New York 42.0119 -76.5406 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, New York 42.0119 -76.5406 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Tennessee 35.8247 -84.0552 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Tennessee 35.8247 -84.0552 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Tennessee 35.8247 -84.0552 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salinas, Puerto Rico 17.9778 -66.2962 matched with DB +City: Salinas, state: California, Lat: 36.6883, Lng: -121.6317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rose Hill, Kansas 37.5702 -97.1361 matched with DB +City: Rose Hill, state: Virginia, Lat: 38.7872, Lng: -77.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belton, South Carolina 34.5237 -82.4938 matched with DB +City: Belton, state: Missouri, Lat: 38.8192, Lng: -94.5335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belton, South Carolina 34.5237 -82.4938 matched with DB +City: Belton, state: Texas, Lat: 31.0525, Lng: -97.479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Wisconsin 44.7523 -92.7882 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Pennsylvania 40.5561 -75.9825 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, New Jersey 39.8562 -75.0365 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Ohio 41.1613 -82.2255 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Ohio 41.1613 -82.2255 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Iowa 42.7420 -93.2050 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Iowa 42.7420 -93.2050 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Iowa 42.7420 -93.2050 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Ohio 38.8684 -83.8992 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Ohio 38.8684 -83.8992 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Ohio 38.8684 -83.8992 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medford, Wisconsin 45.1365 -90.3436 matched with DB +City: Medford, state: Massachusetts, Lat: 42.4234, Lng: -71.1087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Wisconsin 45.1365 -90.3436 matched with DB +City: Medford, state: New York, Lat: 40.822, Lng: -72.9859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Wisconsin 45.1365 -90.3436 matched with DB +City: Medford, state: Oregon, Lat: 42.3372, Lng: -122.854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Wisconsin 45.1365 -90.3436 matched with DB +City: Medford, state: New Jersey, Lat: 39.8639, Lng: -74.8231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chula Vista, Texas 28.6573 -100.4220 matched with DB +City: Chula Vista, state: California, Lat: 32.6281, Lng: -117.0144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Florida 30.5061 -82.9540 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Florida 30.5061 -82.9540 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Florida 30.1289 -85.6008 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Florida 30.1289 -85.6008 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl River, Mississippi 32.7889 -89.2384 matched with DB +City: Pearl River, state: New York, Lat: 41.0615, Lng: -74.0047, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Nebraska 40.9111 -96.5341 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Nebraska 40.9111 -96.5341 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shenandoah, Pennsylvania 40.8167 -76.2003 matched with DB +City: Shenandoah, state: Louisiana, Lat: 30.4019, Lng: -91.002, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buckingham, Florida 26.6613 -81.7402 matched with DB +City: Buckingham, state: Pennsylvania, Lat: 40.3188, Lng: -75.058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Olive, North Carolina 35.1997 -78.0662 matched with DB +City: Mount Olive, state: New Jersey, Lat: 40.8662, Lng: -74.7426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Tennessee 36.0939 -87.7847 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Tennessee 36.0939 -87.7847 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Wisconsin 44.9540 -92.3709 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Wisconsin 44.9540 -92.3709 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Texas 32.5546 -95.8641 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Texas 32.5546 -95.8641 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Texas 32.5546 -95.8641 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Texas 32.5546 -95.8641 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Texas 32.5546 -95.8641 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Texas 32.5546 -95.8641 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, Washington 47.3452 -122.6369 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, Washington 47.3452 -122.6369 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Pennsylvania 40.9615 -76.6121 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Pennsylvania 40.9615 -76.6121 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Pennsylvania 40.9615 -76.6121 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Pennsylvania 40.9615 -76.6121 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Pennsylvania 40.9615 -76.6121 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anna, Illinois 37.4612 -89.2388 matched with DB +City: Anna, state: Texas, Lat: 33.3472, Lng: -96.5508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest City, Iowa 43.2570 -93.6366 matched with DB +City: Forest City, state: Florida, Lat: 28.6619, Lng: -81.4444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, New York 43.0308 -75.9984 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, New York 43.0308 -75.9984 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, New York 43.0308 -75.9984 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Michigan 43.1571 -85.7106 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Michigan 43.1571 -85.7106 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southside, Arkansas 35.7149 -91.6328 matched with DB +City: Southside, state: Alabama, Lat: 33.9007, Lng: -86.0238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sullivan, Indiana 39.0973 -87.4074 matched with DB +City: Sullivan, state: New York, Lat: 43.0923, Lng: -75.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Pennsylvania 40.1509 -79.5434 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Pennsylvania 40.1509 -79.5434 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Pennsylvania 40.1509 -79.5434 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Pennsylvania 40.1509 -79.5434 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Pennsylvania 40.1509 -79.5434 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Pennsylvania 40.1509 -79.5434 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Ohio 39.3536 -83.3883 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Ohio 39.3536 -83.3883 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Ohio 39.3536 -83.3883 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Alabama 31.0437 -85.8763 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Alabama 31.0437 -85.8763 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greencastle, Pennsylvania 39.7907 -77.7267 matched with DB +City: Greencastle, state: Indiana, Lat: 39.6432, Lng: -86.8418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, South Carolina 34.9833 -81.0992 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, South Carolina 34.9833 -81.0992 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, South Carolina 34.9833 -81.0992 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield, Ohio 41.4559 -82.0912 matched with DB +City: Sheffield, state: Alabama, Lat: 34.757, Lng: -87.6977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Olive, Alabama 33.6778 -86.8727 matched with DB +City: Mount Olive, state: New Jersey, Lat: 40.8662, Lng: -74.7426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springville, New York 42.5084 -78.6696 matched with DB +City: Springville, state: Utah, Lat: 40.1638, Lng: -111.6205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashburn, Georgia 31.7096 -83.6528 matched with DB +City: Ashburn, state: Virginia, Lat: 39.0277, Lng: -77.4714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Washington 47.4874 -122.6175 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Georgia 32.2062 -82.3215 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceville, Illinois 38.7264 -87.6873 matched with DB +City: Lawrenceville, state: Georgia, Lat: 33.9523, Lng: -83.9932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, North Dakota 46.7688 -100.6978 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, North Dakota 46.7688 -100.6978 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, North Dakota 46.7688 -100.6978 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, North Dakota 46.7688 -100.6978 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Tennessee 35.9689 -88.9450 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Tennessee 35.9689 -88.9450 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Tennessee 35.9689 -88.9450 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Louisiana 32.4883 -92.1619 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Louisiana 32.4883 -92.1619 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Louisiana 32.4883 -92.1619 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laguna Beach, Florida 30.2549 -85.9512 matched with DB +City: Laguna Beach, state: California, Lat: 33.5455, Lng: -117.7613, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Iowa 42.0173 -94.3799 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Iowa 42.0173 -94.3799 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Iowa 42.0173 -94.3799 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sebring, Ohio 40.9207 -81.0231 matched with DB +City: Sebring, state: Florida, Lat: 27.477, Lng: -81.453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, North Carolina 35.1798 -83.3809 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Minnesota 45.2685 -93.0809 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Minnesota 45.2685 -93.0809 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Minnesota 45.2685 -93.0809 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Minnesota 45.2685 -93.0809 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Minnesota 45.2685 -93.0809 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Georgia 34.4710 -84.4497 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Georgia 34.4710 -84.4497 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Minnesota 44.8743 -92.9975 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Minnesota 44.8743 -92.9975 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Minnesota 44.8743 -92.9975 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, North Dakota 48.4142 -97.4056 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, North Dakota 48.4142 -97.4056 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelbyville, Illinois 39.4097 -88.8005 matched with DB +City: Shelbyville, state: Indiana, Lat: 39.5352, Lng: -85.7793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Illinois 39.4097 -88.8005 matched with DB +City: Shelbyville, state: Kentucky, Lat: 38.2067, Lng: -85.2292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Illinois 39.4097 -88.8005 matched with DB +City: Shelbyville, state: Tennessee, Lat: 35.4987, Lng: -86.4517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Arkansas 33.9418 -93.8516 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Ohio 39.1256 -82.9836 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Ohio 39.1256 -82.9836 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsfield, Illinois 39.6201 -90.7936 matched with DB +City: Pittsfield, state: Massachusetts, Lat: 42.4517, Lng: -73.2605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Missouri 39.3447 -91.2032 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Missouri 39.3447 -91.2032 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookfield, Missouri 39.7853 -93.0772 matched with DB +City: Brookfield, state: Wisconsin, Lat: 43.064, Lng: -88.1231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookfield, Missouri 39.7853 -93.0772 matched with DB +City: Brookfield, state: Illinois, Lat: 41.8245, Lng: -87.847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shrewsbury, New Jersey 40.3249 -74.0600 matched with DB +City: Shrewsbury, state: Massachusetts, Lat: 42.2842, Lng: -71.7154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jonesboro, Louisiana 32.2348 -92.7098 matched with DB +City: Jonesboro, state: Arkansas, Lat: 35.8212, Lng: -90.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Pennsylvania 40.1580 -76.2031 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Michigan 42.9351 -85.3457 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Michigan 42.9351 -85.3457 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Michigan 42.9351 -85.3457 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lambertville, New Jersey 40.3687 -74.9430 matched with DB +City: Lambertville, state: Michigan, Lat: 41.7484, Lng: -83.6244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Michigan 42.8194 -83.7811 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caldwell, Texas 30.5307 -96.7007 matched with DB +City: Caldwell, state: New Jersey, Lat: 40.8389, Lng: -74.2776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Caldwell, Texas 30.5307 -96.7007 matched with DB +City: Caldwell, state: Idaho, Lat: 43.6453, Lng: -116.6594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherman, Illinois 39.8876 -89.6066 matched with DB +City: Sherman, state: Texas, Lat: 33.6273, Lng: -96.6221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rice Lake, Minnesota 46.8977 -92.1137 matched with DB +City: Rice Lake, state: Wisconsin, Lat: 45.4864, Lng: -91.7447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Iowa 41.5118 -93.4950 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinehurst, Texas 30.1889 -95.7017 matched with DB +City: Pinehurst, state: North Carolina, Lat: 35.1922, Lng: -79.4684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Illinois 38.1513 -89.7185 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Illinois 38.1513 -89.7185 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, Maryland 39.5738 -77.7482 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fenton, Missouri 38.5279 -90.4488 matched with DB +City: Fenton, state: Michigan, Lat: 42.7994, Lng: -83.7144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Otsego, Michigan 42.4576 -85.6980 matched with DB +City: Otsego, state: Minnesota, Lat: 45.266, Lng: -93.6201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, New Jersey 40.9921 -74.3125 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, New Jersey 40.9921 -74.3125 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, New Jersey 40.9921 -74.3125 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookdale, South Carolina 33.5183 -80.8332 matched with DB +City: Brookdale, state: New Jersey, Lat: 40.8348, Lng: -74.1798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Carlos, Texas 26.2957 -98.0631 matched with DB +City: San Carlos, state: California, Lat: 37.4982, Lng: -122.2677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Point Pleasant, West Virginia 38.8530 -82.1303 matched with DB +City: Point Pleasant, state: New Jersey, Lat: 40.0772, Lng: -74.0702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, New York 41.3570 -74.2768 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, New York 41.3570 -74.2768 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Arizona 34.4393 -110.1018 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Arizona 34.4393 -110.1018 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, South Carolina 34.9342 -82.1443 matched with DB +City: Duncan, state: Oklahoma, Lat: 34.5408, Lng: -97.9215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Iowa 42.2298 -91.1861 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Home, North Carolina 35.3708 -82.5021 matched with DB +City: Mountain Home, state: Arkansas, Lat: 36.3351, Lng: -92.384, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mountain Home, North Carolina 35.3708 -82.5021 matched with DB +City: Mountain Home, state: Idaho, Lat: 43.1324, Lng: -115.697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Missouri 39.1703 -94.6306 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Missouri 39.1703 -94.6306 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Missouri 39.1703 -94.6306 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Missouri 39.1703 -94.6306 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southport, North Carolina 33.9411 -78.0205 matched with DB +City: Southport, state: New York, Lat: 42.04, Lng: -76.8775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kings Park, Virginia 38.8026 -77.2396 matched with DB +City: Kings Park, state: New York, Lat: 40.8881, Lng: -73.2475, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vidalia, Louisiana 31.5668 -91.4404 matched with DB +City: Vidalia, state: Georgia, Lat: 32.2125, Lng: -82.4019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northlake, South Carolina 34.5691 -82.6838 matched with DB +City: Northlake, state: Illinois, Lat: 41.9142, Lng: -87.9054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossville, Georgia 34.9747 -85.2898 matched with DB +City: Rossville, state: Maryland, Lat: 39.3572, Lng: -76.4767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Michigan 42.2022 -83.4839 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Michigan 42.2022 -83.4839 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Minnesota 43.9687 -92.0593 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Minnesota 43.9687 -92.0593 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Delaware 39.2849 -75.6366 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Delaware 39.2849 -75.6366 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Delaware 39.2849 -75.6366 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Delaware 39.2849 -75.6366 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Delaware 39.2849 -75.6366 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Texas 30.0082 -97.1520 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Texas 30.0082 -97.1520 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Oklahoma 35.5108 -97.3715 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Oklahoma 35.5108 -97.3715 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greendale, Indiana 39.1316 -84.8510 matched with DB +City: Greendale, state: Wisconsin, Lat: 42.9371, Lng: -88.0018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dumas, Arkansas 33.8834 -91.4857 matched with DB +City: Dumas, state: Texas, Lat: 35.8613, Lng: -101.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, Pennsylvania 40.8531 -79.9555 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, Pennsylvania 40.8531 -79.9555 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upland, Indiana 40.4639 -85.5008 matched with DB +City: Upland, state: California, Lat: 34.1178, Lng: -117.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oregon, Illinois 42.0132 -89.3354 matched with DB +City: Oregon, state: Ohio, Lat: 41.6524, Lng: -83.4321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oregon, Illinois 42.0132 -89.3354 matched with DB +City: Oregon, state: Wisconsin, Lat: 42.9253, Lng: -89.3892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bella Vista, California 40.6427 -122.2460 matched with DB +City: Bella Vista, state: Arkansas, Lat: 36.4667, Lng: -94.2707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Delaware 38.5691 -75.5689 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Delaware 38.5691 -75.5689 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Delaware 38.5691 -75.5689 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Delaware 38.5691 -75.5689 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, Indiana 38.7369 -86.4755 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Kentucky 37.6148 -84.5815 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kentucky 37.6148 -84.5815 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kentucky 37.6148 -84.5815 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kentucky 37.6148 -84.5815 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kentucky 37.6148 -84.5815 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kentucky 37.6148 -84.5815 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, Missouri 38.0013 -91.6154 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leland, Mississippi 33.4051 -90.8909 matched with DB +City: Leland, state: North Carolina, Lat: 34.2042, Lng: -78.0279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Illinois 39.3986 -87.6900 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Illinois 39.3986 -87.6900 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Illinois 39.3986 -87.6900 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Illinois 39.3986 -87.6900 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Illinois 40.1140 -88.0354 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, Ohio 41.5817 -84.5968 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, West Virginia 39.0391 -80.4616 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, West Virginia 39.0391 -80.4616 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, West Virginia 39.0391 -80.4616 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Tennessee 36.3875 -85.3265 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Tennessee 36.3875 -85.3265 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Wisconsin 42.8473 -90.7065 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Wisconsin 42.8473 -90.7065 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Wisconsin 42.8473 -90.7065 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Wisconsin 42.8473 -90.7065 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Wisconsin 42.8473 -90.7065 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Wisconsin 42.8473 -90.7065 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Minnesota 45.1640 -93.0540 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Minnesota 45.1640 -93.0540 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Wisconsin 42.8003 -88.0118 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Delaware 39.0990 -75.5571 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Delaware 39.0990 -75.5571 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestdale, Massachusetts 41.6846 -70.5082 matched with DB +City: Forestdale, state: Alabama, Lat: 33.5737, Lng: -86.9, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamstown, Kentucky 38.6415 -84.5675 matched with DB +City: Williamstown, state: New Jersey, Lat: 39.6874, Lng: -74.9786, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayport, Minnesota 45.0152 -92.7789 matched with DB +City: Bayport, state: New York, Lat: 40.7461, Lng: -73.0546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisburg, West Virginia 37.8096 -80.4327 matched with DB +City: Lewisburg, state: Tennessee, Lat: 35.451, Lng: -86.7901, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Kentucky 38.6799 -85.1658 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Kentucky 38.6799 -85.1658 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellaire, Ohio 40.0176 -80.7469 matched with DB +City: Bellaire, state: Texas, Lat: 29.704, Lng: -95.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Colorado 38.3836 -105.1114 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Colorado 38.3836 -105.1114 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Colorado 38.3836 -105.1114 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Colorado 38.3836 -105.1114 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Colorado 38.3836 -105.1114 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Colorado 38.3836 -105.1114 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbridge, California 38.1692 -121.3113 matched with DB +City: Woodbridge, state: Virginia, Lat: 38.6409, Lng: -77.258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbridge, California 38.1692 -121.3113 matched with DB +City: Woodbridge, state: New Jersey, Lat: 40.5611, Lng: -74.2943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Arizona 33.0249 -109.2883 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Arizona 33.0249 -109.2883 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemont, Illinois 41.9890 -87.8718 matched with DB +City: Rosemont, state: California, Lat: 38.5478, Lng: -121.3553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, Ohio 39.2556 -84.4710 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, Ohio 39.2556 -84.4710 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemont, Pennsylvania 40.0306 -75.3270 matched with DB +City: Rosemont, state: California, Lat: 38.5478, Lng: -121.3553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Wisconsin 44.6684 -88.2351 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shrewsbury, Pennsylvania 39.7714 -76.6799 matched with DB +City: Shrewsbury, state: Massachusetts, Lat: 42.2842, Lng: -71.7154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pomona, New York 41.1891 -74.0543 matched with DB +City: Pomona, state: New Jersey, Lat: 39.4688, Lng: -74.5502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pomona, New York 41.1891 -74.0543 matched with DB +City: Pomona, state: California, Lat: 34.0585, Lng: -117.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Booneville, Arkansas 35.1392 -93.9178 matched with DB +City: Booneville, state: Mississippi, Lat: 34.6643, Lng: -88.5684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Wisconsin 43.1726 -89.0613 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Wisconsin 43.1726 -89.0613 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Wisconsin 43.1726 -89.0613 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Wisconsin 43.1726 -89.0613 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Georgia 34.4860 -83.5497 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Georgia 34.4860 -83.5497 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Michigan 42.8697 -84.8991 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Michigan 42.8697 -84.8991 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Michigan 42.8697 -84.8991 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Michigan 42.8697 -84.8991 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anthony, Texas 31.9876 -106.5933 matched with DB +City: Anthony, state: New Mexico, Lat: 32.0131, Lng: -106.5984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Diego, Texas 27.7609 -98.2389 matched with DB +City: San Diego, state: California, Lat: 32.8313, Lng: -117.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneida, Tennessee 36.5171 -84.5108 matched with DB +City: Oneida, state: New York, Lat: 43.0769, Lng: -75.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malden, Missouri 36.5850 -89.9808 matched with DB +City: Malden, state: Massachusetts, Lat: 42.4305, Lng: -71.0576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denver, Pennsylvania 40.2326 -76.1392 matched with DB +City: Denver, state: Colorado, Lat: 39.762, Lng: -104.8758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brentwood, Maryland 38.9439 -76.9571 matched with DB +City: Brentwood, state: Pennsylvania, Lat: 40.3734, Lng: -79.9757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Maryland 38.9439 -76.9571 matched with DB +City: Brentwood, state: New York, Lat: 40.7839, Lng: -73.2522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Maryland 38.9439 -76.9571 matched with DB +City: Brentwood, state: Tennessee, Lat: 35.9918, Lng: -86.7758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brentwood, Maryland 38.9439 -76.9571 matched with DB +City: Brentwood, state: California, Lat: 37.9356, Lng: -121.719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, North Carolina 35.8478 -81.4867 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, North Carolina 35.8478 -81.4867 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, North Carolina 35.8478 -81.4867 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, North Carolina 35.8478 -81.4867 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, North Carolina 35.8478 -81.4867 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Minnesota 45.0669 -93.9203 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Wisconsin 42.7338 -88.2489 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Wisconsin 42.7338 -88.2489 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Wisconsin 42.7338 -88.2489 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Wisconsin 42.7338 -88.2489 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Mississippi 33.8963 -89.0031 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceville, New Jersey 40.3018 -74.7378 matched with DB +City: Lawrenceville, state: Georgia, Lat: 33.9523, Lng: -83.9932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vicksburg, Michigan 42.1185 -85.5413 matched with DB +City: Vicksburg, state: Mississippi, Lat: 32.3173, Lng: -90.8868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butte, Alaska 61.5539 -149.0035 matched with DB +City: Butte, state: Montana, Lat: 45.902, Lng: -112.6571, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Illinois 39.7488 -89.5436 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Illinois 39.7488 -89.5436 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Illinois 39.7488 -89.5436 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Illinois 39.7488 -89.5436 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Connecticut 41.8189 -72.9220 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Indiana 38.2954 -85.9640 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Indiana 38.2954 -85.9640 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Indiana 38.2954 -85.9640 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Alabama 33.7675 -85.8792 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Alabama 33.7675 -85.8792 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Alabama 33.7675 -85.8792 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Alabama 33.7675 -85.8792 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Georgia 33.7355 -82.7426 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, California 37.9574 -120.4110 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, California 37.9574 -120.4110 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgeland, South Carolina 32.4681 -80.9178 matched with DB +City: Ridgeland, state: Mississippi, Lat: 32.4236, Lng: -90.1481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitney, South Carolina 34.9835 -81.9260 matched with DB +City: Whitney, state: Nevada, Lat: 36.1008, Lng: -115.0379, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Anthony, Idaho 43.9648 -111.6841 matched with DB +City: St. Anthony, state: Minnesota, Lat: 45.0278, Lng: -93.2174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, New York 41.2425 -73.9424 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chandler, Indiana 38.0373 -87.3739 matched with DB +City: Chandler, state: Arizona, Lat: 33.2825, Lng: -111.8514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Ohio 41.2354 -81.6421 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Ohio 41.2354 -81.6421 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Minnesota 45.0219 -93.7076 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Minnesota 45.0219 -93.7076 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Minnesota 45.0219 -93.7076 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Minnesota 45.0219 -93.7076 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmersville, Texas 33.1608 -96.3603 matched with DB +City: Farmersville, state: California, Lat: 36.305, Lng: -119.2083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berwyn, Pennsylvania 40.0396 -75.4439 matched with DB +City: Berwyn, state: Illinois, Lat: 41.8433, Lng: -87.7909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Illinois 42.1655 -88.0864 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Illinois 42.1655 -88.0864 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, North Carolina 35.2688 -81.1013 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, North Carolina 35.2688 -81.1013 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, North Carolina 35.2688 -81.1013 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton, Mississippi 32.3455 -89.6572 matched with DB +City: Morton, state: Illinois, Lat: 40.6135, Lng: -89.4669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethlehem, North Carolina 35.8162 -81.2962 matched with DB +City: Bethlehem, state: Pennsylvania, Lat: 40.6266, Lng: -75.3679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethlehem, North Carolina 35.8162 -81.2962 matched with DB +City: Bethlehem, state: New York, Lat: 42.5856, Lng: -73.8219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Texas 29.7056 -96.5571 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Texas 29.7056 -96.5571 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Texas 29.7056 -96.5571 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Texas 29.7056 -96.5571 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Texas 29.7056 -96.5571 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: High Point, Florida 28.5475 -82.5206 matched with DB +City: High Point, state: North Carolina, Lat: 35.991, Lng: -79.9937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, North Carolina 35.9984 -79.9348 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, North Carolina 35.9984 -79.9348 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middlebury, Indiana 41.6696 -85.7075 matched with DB +City: Middlebury, state: Vermont, Lat: 44.0043, Lng: -73.1218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southgate, Kentucky 39.0631 -84.4715 matched with DB +City: Southgate, state: Michigan, Lat: 42.2047, Lng: -83.2057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Utah 39.5406 -111.4560 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Utah 39.5406 -111.4560 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Utah 39.5406 -111.4560 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Utah 39.5406 -111.4560 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Utah 39.5406 -111.4560 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Utah 39.5406 -111.4560 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Tennessee 36.0663 -88.1047 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Tennessee 36.0663 -88.1047 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Wisconsin 44.2486 -91.4916 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Wisconsin 44.2486 -91.4916 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norton, Virginia 36.9314 -82.6262 matched with DB +City: Norton, state: Ohio, Lat: 41.0294, Lng: -81.6461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norton, Virginia 36.9314 -82.6262 matched with DB +City: Norton, state: Massachusetts, Lat: 41.964, Lng: -71.1842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holt, Alabama 33.2302 -87.4827 matched with DB +City: Holt, state: Michigan, Lat: 42.6416, Lng: -84.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Indiana 38.7133 -85.4725 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Indiana 38.7133 -85.4725 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Indiana 38.7133 -85.4725 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Indiana 38.7133 -85.4725 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Indiana 38.7133 -85.4725 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Indiana 38.7133 -85.4725 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Oregon 44.2719 -123.1656 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Oregon 44.2719 -123.1656 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Arkansas 35.0058 -91.9895 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Arkansas 35.0058 -91.9895 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomasville, Alabama 31.9110 -87.7419 matched with DB +City: Thomasville, state: North Carolina, Lat: 35.8813, Lng: -80.0807, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Thomasville, Alabama 31.9110 -87.7419 matched with DB +City: Thomasville, state: Georgia, Lat: 30.8394, Lng: -83.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanford, Kentucky 37.5331 -84.6602 matched with DB +City: Stanford, state: California, Lat: 37.4252, Lng: -122.1674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Columbia, Texas 29.1422 -95.6491 matched with DB +City: West Columbia, state: South Carolina, Lat: 33.9932, Lng: -81.0936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Idaho 43.5183 -111.9692 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Idaho 43.5183 -111.9692 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Idaho 43.5183 -111.9692 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Idaho 43.5183 -111.9692 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Utah 39.3623 -112.5471 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlboro, New York 41.6047 -73.9772 matched with DB +City: Marlboro, state: New Jersey, Lat: 40.3427, Lng: -74.2567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granger, Washington 46.3454 -120.1925 matched with DB +City: Granger, state: Indiana, Lat: 41.7374, Lng: -86.1348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, California 38.4825 -122.8899 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, California 38.4825 -122.8899 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, Hawaii 19.5366 -155.1590 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andrews, South Carolina 33.4494 -79.5660 matched with DB +City: Andrews, state: Texas, Lat: 32.3207, Lng: -102.552, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Georgia 32.8565 -84.6329 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Georgia 32.8565 -84.6329 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Georgia 32.8565 -84.6329 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Georgia 32.8565 -84.6329 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Georgia 32.8565 -84.6329 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Georgia 32.8565 -84.6329 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, Minnesota 45.6757 -94.8128 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Kansas 38.3462 -98.2045 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Indiana 38.7417 -85.8117 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Indiana 38.7417 -85.8117 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Tennessee 35.0663 -85.6227 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Tennessee 35.0663 -85.6227 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boiling Springs, Pennsylvania 40.1592 -77.1391 matched with DB +City: Boiling Springs, state: South Carolina, Lat: 35.045, Lng: -81.9779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, Georgia 33.5687 -83.1872 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Three Lakes, Washington 47.9420 -121.9924 matched with DB +City: Three Lakes, state: Florida, Lat: 25.6415, Lng: -80.4, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, Washington 47.7564 -122.5158 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, Washington 47.7564 -122.5158 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Ohio 41.3669 -81.5036 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toledo, Oregon 44.6198 -123.9341 matched with DB +City: Toledo, state: Ohio, Lat: 41.6638, Lng: -83.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manor, Pennsylvania 40.3459 -79.6693 matched with DB +City: Manor, state: Texas, Lat: 30.3562, Lng: -97.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manor, Pennsylvania 40.3459 -79.6693 matched with DB +City: Manor, state: Pennsylvania, Lat: 39.9848, Lng: -76.4216, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northfield, Ohio 41.3427 -81.5285 matched with DB +City: Northfield, state: Minnesota, Lat: 44.455, Lng: -93.1698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ozark, Arkansas 35.4991 -93.8438 matched with DB +City: Ozark, state: Alabama, Lat: 31.4508, Lng: -85.6473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ozark, Arkansas 35.4991 -93.8438 matched with DB +City: Ozark, state: Missouri, Lat: 37.0365, Lng: -93.2158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluffton, Ohio 40.8912 -83.8887 matched with DB +City: Bluffton, state: Indiana, Lat: 40.7424, Lng: -85.173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bluffton, Ohio 40.8912 -83.8887 matched with DB +City: Bluffton, state: South Carolina, Lat: 32.2135, Lng: -80.9316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaver Dam, Kentucky 37.4042 -86.8741 matched with DB +City: Beaver Dam, state: Wisconsin, Lat: 43.4688, Lng: -88.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Wisconsin 44.5142 -88.3271 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Wisconsin 44.5142 -88.3271 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Illinois 39.8456 -89.5363 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Illinois 39.8456 -89.5363 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Illinois 41.8650 -90.1593 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Illinois 41.8650 -90.1593 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Tennessee 35.8042 -87.4577 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Tennessee 35.8042 -87.4577 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Georgia 34.5970 -83.7622 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Georgia 34.5970 -83.7622 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Georgia 34.5970 -83.7622 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, North Carolina 35.1545 -80.5345 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Indiana 40.1995 -84.8206 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Indiana 40.1995 -84.8206 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Indiana 40.1995 -84.8206 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Indiana 40.1995 -84.8206 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Wisconsin 43.1835 -88.9899 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Wisconsin 43.1835 -88.9899 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Georgia 32.8937 -85.1453 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Georgia 32.8937 -85.1453 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Hills, California 40.7313 -124.1551 matched with DB +City: Pine Hills, state: Florida, Lat: 28.5818, Lng: -81.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Road, North Carolina 35.5107 -76.9898 matched with DB +City: River Road, state: Oregon, Lat: 44.0833, Lng: -123.132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pelham, Georgia 31.1267 -84.1515 matched with DB +City: Pelham, state: New York, Lat: 40.9, Lng: -73.8063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pelham, Georgia 31.1267 -84.1515 matched with DB +City: Pelham, state: Alabama, Lat: 33.3114, Lng: -86.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pelham, Georgia 31.1267 -84.1515 matched with DB +City: Pelham, state: New Hampshire, Lat: 42.7335, Lng: -71.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverdale, Virginia 37.3566 -79.9055 matched with DB +City: Cloverdale, state: California, Lat: 38.7962, Lng: -123.0152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Florida 30.4995 -84.4582 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pendleton, South Carolina 34.6451 -82.7818 matched with DB +City: Pendleton, state: Oregon, Lat: 45.6757, Lng: -118.8201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Oklahoma 34.7849 -98.3010 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Oklahoma 34.7849 -98.3010 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, Alabama 31.4342 -86.9723 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, Alabama 31.4342 -86.9723 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, North Carolina 35.9928 -76.9401 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, North Carolina 35.9928 -76.9401 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, North Carolina 35.9928 -76.9401 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Texas 31.2803 -94.5770 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Texas 31.2803 -94.5770 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Texas 31.2803 -94.5770 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Texas 31.2803 -94.5770 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Florida 28.5535 -81.6360 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Florida 28.5535 -81.6360 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Florida 28.5535 -81.6360 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Michigan 42.8218 -83.2563 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Michigan 42.8218 -83.2563 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Michigan 42.8218 -83.2563 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Michigan 42.8218 -83.2563 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Michigan 42.8218 -83.2563 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Texas 31.7822 -97.5824 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Texas 31.7822 -97.5824 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frederick, Oklahoma 34.3708 -99.0008 matched with DB +City: Frederick, state: Maryland, Lat: 39.4337, Lng: -77.4141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frederick, Oklahoma 34.3708 -99.0008 matched with DB +City: Frederick, state: Colorado, Lat: 40.1088, Lng: -104.9701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flat Rock, North Carolina 35.2678 -82.4526 matched with DB +City: Flat Rock, state: Michigan, Lat: 42.0991, Lng: -83.2716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Nebraska 41.8379 -96.7057 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Nebraska 41.8379 -96.7057 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shenandoah, Texas 30.1840 -95.4557 matched with DB +City: Shenandoah, state: Louisiana, Lat: 30.4019, Lng: -91.002, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Valley, West Virginia 39.4504 -80.1552 matched with DB +City: Pleasant Valley, state: New York, Lat: 41.7697, Lng: -73.8049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, Minnesota 44.1648 -92.1697 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, Minnesota 44.1648 -92.1697 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, Louisiana 32.6027 -93.8832 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Maine 44.0289 -70.1076 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Missouri 38.2331 -90.5671 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, Georgia 31.7324 -84.1688 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, Georgia 31.7324 -84.1688 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hot Springs, South Dakota 43.4195 -103.4657 matched with DB +City: Hot Springs, state: Arkansas, Lat: 34.4892, Lng: -93.0501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Indiana 40.1320 -86.2198 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Pennsylvania 40.7025 -80.2838 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Pennsylvania 40.7025 -80.2838 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Pennsylvania 40.7025 -80.2838 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Pennsylvania 40.7025 -80.2838 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Minnesota 45.1579 -93.6634 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Minnesota 45.1579 -93.6634 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Minnesota 45.1579 -93.6634 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Minnesota 45.1579 -93.6634 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Minnesota 45.1579 -93.6634 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Minnesota 45.1579 -93.6634 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Missouri 39.3636 -93.4955 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Missouri 39.3636 -93.4955 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reno, Texas 33.6659 -95.4768 matched with DB +City: Reno, state: Nevada, Lat: 39.5497, Lng: -119.8483, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wadsworth, Illinois 42.4448 -87.9202 matched with DB +City: Wadsworth, state: Ohio, Lat: 41.0279, Lng: -81.7323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Orange, Texas 30.0791 -93.7598 matched with DB +City: West Orange, state: New Jersey, Lat: 40.7893, Lng: -74.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yuma, Colorado 40.1235 -102.7161 matched with DB +City: Yuma, state: Arizona, Lat: 32.5995, Lng: -114.5491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Nebraska 40.3894 -95.8436 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Georgia 31.5432 -82.4745 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orange, Ohio 41.4414 -81.4743 matched with DB +City: Orange, state: California, Lat: 33.8038, Lng: -117.8218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Orange, Ohio 41.4414 -81.4743 matched with DB +City: Orange, state: Texas, Lat: 30.1226, Lng: -93.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elma, Washington 47.0055 -123.4112 matched with DB +City: Elma, state: New York, Lat: 42.8231, Lng: -78.6371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Ohio 41.7722 -81.0529 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Ohio 41.7722 -81.0529 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Ohio 41.7722 -81.0529 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Ohio 41.7722 -81.0529 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Ohio 41.7722 -81.0529 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Kansas 39.8432 -96.6387 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Kansas 39.8432 -96.6387 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Kansas 39.8432 -96.6387 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Kansas 39.8432 -96.6387 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadowbrook, California 33.7253 -117.2851 matched with DB +City: Meadowbrook, state: Virginia, Lat: 37.4301, Lng: -77.474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meadowbrook, California 33.7253 -117.2851 matched with DB +City: Meadowbrook, state: Alabama, Lat: 33.3935, Lng: -86.7041, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, Ohio 39.0853 -84.3608 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, Ohio 39.0853 -84.3608 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearwater, South Carolina 33.5038 -81.9100 matched with DB +City: Clearwater, state: Florida, Lat: 27.979, Lng: -82.7623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, New York 43.9837 -75.6021 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Texas 32.0875 -98.3392 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Texas 32.0875 -98.3392 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Texas 32.0875 -98.3392 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Virginia 37.5519 -76.8017 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Virginia 37.5519 -76.8017 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malvern, Pennsylvania 40.0329 -75.5146 matched with DB +City: Malvern, state: Arkansas, Lat: 34.3734, Lng: -92.8205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobart, Oklahoma 35.0246 -99.0875 matched with DB +City: Hobart, state: Indiana, Lat: 41.514, Lng: -87.2729, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hobart, Oklahoma 35.0246 -99.0875 matched with DB +City: Hobart, state: Wisconsin, Lat: 44.4967, Lng: -88.1602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, Tennessee 35.2352 -89.3869 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, Tennessee 35.2352 -89.3869 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burbank, Washington 46.2016 -118.9891 matched with DB +City: Burbank, state: Illinois, Lat: 41.7444, Lng: -87.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burbank, Washington 46.2016 -118.9891 matched with DB +City: Burbank, state: California, Lat: 34.1879, Lng: -118.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vandalia, Missouri 39.3080 -91.4892 matched with DB +City: Vandalia, state: Ohio, Lat: 39.8791, Lng: -84.193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, Wyoming 43.8510 -104.2123 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, Wyoming 43.8510 -104.2123 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forks, Washington 47.9527 -124.3903 matched with DB +City: Forks, state: Pennsylvania, Lat: 40.7358, Lng: -75.2211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Pennsylvania 40.5409 -79.7819 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Pennsylvania 40.5409 -79.7819 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Pennsylvania 40.5409 -79.7819 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Missouri 38.6048 -91.2179 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Missouri 38.6048 -91.2179 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackstone, Virginia 37.0822 -78.0030 matched with DB +City: Blackstone, state: Massachusetts, Lat: 42.0399, Lng: -71.5313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Arizona 34.0286 -114.2224 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Arizona 34.0286 -114.2224 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Oak, North Carolina 36.0415 -77.9064 matched with DB +City: Red Oak, state: Texas, Lat: 32.5212, Lng: -96.7866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annandale, Minnesota 45.2599 -94.1205 matched with DB +City: Annandale, state: Virginia, Lat: 38.8324, Lng: -77.196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newburgh, Indiana 37.9494 -87.4053 matched with DB +City: Newburgh, state: New York, Lat: 41.5531, Lng: -74.0599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Delaware 38.7750 -75.3102 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Delaware 38.7750 -75.3102 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Delaware 38.7750 -75.3102 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Delaware 38.7750 -75.3102 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Delaware 38.7750 -75.3102 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Delaware 38.7750 -75.3102 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mayfield, Ohio 41.5502 -81.4369 matched with DB +City: Mayfield, state: Kentucky, Lat: 36.7371, Lng: -88.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Park, North Carolina 35.0849 -80.6349 matched with DB +City: Lake Park, state: Florida, Lat: 26.7998, Lng: -80.0681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, South Dakota 43.6210 -96.9424 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, South Dakota 43.6210 -96.9424 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, South Dakota 43.6210 -96.9424 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvey, Michigan 46.4832 -87.3569 matched with DB +City: Harvey, state: Illinois, Lat: 41.6076, Lng: -87.652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harvey, Michigan 46.4832 -87.3569 matched with DB +City: Harvey, state: Louisiana, Lat: 29.8876, Lng: -90.0666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Iowa 41.6683 -92.0103 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, South Carolina 34.7904 -82.6961 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, South Carolina 34.7904 -82.6961 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Minnesota 44.4450 -93.5797 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Minnesota 44.4450 -93.5797 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Minnesota 44.4450 -93.5797 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Minnesota 44.4450 -93.5797 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Minnesota 44.4450 -93.5797 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Minnesota 44.4450 -93.5797 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Oregon 44.7171 -123.0068 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Oregon 44.7171 -123.0068 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Oregon 44.7171 -123.0068 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, North Carolina 35.6828 -81.3683 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Missouri 37.6444 -93.0970 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Missouri 37.6444 -93.0970 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Ohio 41.7384 -80.7689 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Ohio 41.7384 -80.7689 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Ohio 41.7384 -80.7689 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knoxville, Illinois 40.9070 -90.2857 matched with DB +City: Knoxville, state: Tennessee, Lat: 35.9692, Lng: -83.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Alaska 56.7566 -132.8727 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, North Carolina 35.8588 -76.7487 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, North Carolina 35.8588 -76.7487 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, North Carolina 35.8588 -76.7487 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, North Carolina 35.8588 -76.7487 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, North Carolina 35.8588 -76.7487 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, North Carolina 35.8588 -76.7487 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chandler, Texas 32.3065 -95.4781 matched with DB +City: Chandler, state: Arizona, Lat: 33.2825, Lng: -111.8514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown, North Carolina 34.6219 -78.6074 matched with DB +City: Elizabethtown, state: Pennsylvania, Lat: 40.1533, Lng: -76.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elizabethtown, North Carolina 34.6219 -78.6074 matched with DB +City: Elizabethtown, state: Kentucky, Lat: 37.7031, Lng: -85.8773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Minnesota 43.6265 -94.9891 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Indiana 39.0674 -84.9044 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Indiana 39.0674 -84.9044 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Indiana 39.0674 -84.9044 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Indiana 39.0674 -84.9044 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Alabama 32.5982 -88.1891 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Alabama 32.5982 -88.1891 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, North Carolina 35.6986 -80.4254 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, North Carolina 35.6986 -80.4254 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Iowa 43.3336 -95.1478 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Iowa 43.3336 -95.1478 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Iowa 43.3336 -95.1478 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Iowa 43.3336 -95.1478 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macon, Mississippi 33.1217 -88.5564 matched with DB +City: Macon, state: Georgia, Lat: 32.8065, Lng: -83.6974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Pennsylvania 40.5376 -78.3542 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Pennsylvania 40.5376 -78.3542 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Pennsylvania 40.5376 -78.3542 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Pennsylvania 40.5376 -78.3542 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, New Jersey 41.1485 -74.5736 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Pennsylvania 41.9515 -76.5187 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Pennsylvania 41.9515 -76.5187 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Pennsylvania 41.9515 -76.5187 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Pennsylvania 41.9515 -76.5187 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Pennsylvania 41.9515 -76.5187 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Ohio 40.5787 -81.0907 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Ohio 40.5787 -81.0907 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Pennsylvania 40.3369 -76.4480 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Pennsylvania 40.3369 -76.4480 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Pennsylvania 40.3369 -76.4480 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Florida 27.9927 -82.2198 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Florida 27.9927 -82.2198 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Florida 27.9927 -82.2198 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Florida 27.9927 -82.2198 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Florida 27.9927 -82.2198 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Florida 28.7377 -81.1143 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Florida 28.7377 -81.1143 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Pennsylvania 40.0300 -79.9633 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Pennsylvania 40.0300 -79.9633 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Mississippi 31.1619 -90.4670 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgewood, Illinois 41.5340 -88.0436 matched with DB +City: Ridgewood, state: New Jersey, Lat: 40.9821, Lng: -74.1127, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkville, Wisconsin 42.7155 -88.0097 matched with DB +City: Yorkville, state: Illinois, Lat: 41.6563, Lng: -88.4507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Lake, Alaska 61.5260 -149.9721 matched with DB +City: Big Lake, state: Minnesota, Lat: 45.3417, Lng: -93.7434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, Wisconsin 44.1763 -88.2756 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, Wisconsin 44.1763 -88.2756 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Kentucky 37.8465 -83.8564 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Arkansas 35.2894 -93.7252 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Arkansas 35.2894 -93.7252 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Arkansas 35.2894 -93.7252 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Oklahoma 36.3008 -96.4635 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Oklahoma 36.3008 -96.4635 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Oklahoma 36.3008 -96.4635 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Montana 48.1990 -106.6321 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Montana 48.1990 -106.6321 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sleepy Hollow, Illinois 42.0912 -88.3138 matched with DB +City: Sleepy Hollow, state: New York, Lat: 41.0936, Lng: -73.8722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, Arkansas 36.4134 -90.5839 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lodi, Wisconsin 43.3154 -89.5367 matched with DB +City: Lodi, state: New Jersey, Lat: 40.8784, Lng: -74.0814, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lodi, Wisconsin 43.3154 -89.5367 matched with DB +City: Lodi, state: California, Lat: 38.1218, Lng: -121.2932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Mississippi 32.3296 -89.1534 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Mississippi 32.3296 -89.1534 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Mississippi 32.3296 -89.1534 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Mississippi 32.3296 -89.1534 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Club, Missouri 39.8388 -94.8205 matched with DB +City: Country Club, state: California, Lat: 37.9687, Lng: -121.3408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Country Club, Missouri 39.8388 -94.8205 matched with DB +City: Country Club, state: Florida, Lat: 25.9407, Lng: -80.3102, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Colorado 39.3042 -102.2712 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, Georgia 32.1469 -82.7798 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, Georgia 32.1469 -82.7798 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atoka, Oklahoma 34.3860 -96.1317 matched with DB +City: Atoka, state: Tennessee, Lat: 35.4239, Lng: -89.7861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Hills, Kentucky 39.0692 -84.5313 matched with DB +City: Park Hills, state: Missouri, Lat: 37.8211, Lng: -90.505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Missouri 38.8486 -90.7406 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Louisiana 32.4359 -93.9643 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Louisiana 32.4359 -93.9643 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Louisiana 32.4359 -93.9643 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Louisiana 32.4359 -93.9643 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Illinois 39.9774 -87.6354 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Illinois 39.9774 -87.6354 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Illinois 39.9774 -87.6354 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pottsville, Arkansas 35.2312 -93.0654 matched with DB +City: Pottsville, state: Pennsylvania, Lat: 40.6798, Lng: -76.2091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minden, Nevada 38.9632 -119.7683 matched with DB +City: Minden, state: Louisiana, Lat: 32.6187, Lng: -93.2762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Virginia 36.8991 -82.0784 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, South Carolina 33.8428 -80.3492 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, South Carolina 33.8428 -80.3492 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, South Carolina 33.8428 -80.3492 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, South Carolina 33.8428 -80.3492 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, South Carolina 33.8428 -80.3492 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, Michigan 42.8199 -84.4544 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, Michigan 42.8199 -84.4544 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Nebraska 41.0396 -96.3723 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Nebraska 41.0396 -96.3723 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Nebraska 41.0396 -96.3723 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Nebraska 41.0396 -96.3723 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Nebraska 41.0396 -96.3723 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Nebraska 41.0396 -96.3723 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Alabama 32.6318 -87.3172 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Alabama 32.6318 -87.3172 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Alabama 32.6318 -87.3172 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Alabama 32.6318 -87.3172 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Alabama 32.6318 -87.3172 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington Heights, Washington 48.2119 -122.0630 matched with DB +City: Arlington Heights, state: Illinois, Lat: 42.0955, Lng: -87.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henrietta, Texas 33.8146 -98.1924 matched with DB +City: Henrietta, state: New York, Lat: 43.0555, Lng: -77.6413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hicksville, Ohio 41.2944 -84.7648 matched with DB +City: Hicksville, state: New York, Lat: 40.7637, Lng: -73.5245, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, Missouri 40.2684 -94.0282 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, Missouri 40.2684 -94.0282 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenville, Connecticut 41.0351 -73.6657 matched with DB +City: Glenville, state: New York, Lat: 42.8869, Lng: -73.9925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Pennsylvania 41.3058 -75.8418 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Pennsylvania 41.3058 -75.8418 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Pennsylvania 40.4313 -79.8839 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Pennsylvania 40.4313 -79.8839 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minden, Nebraska 40.4981 -98.9672 matched with DB +City: Minden, state: Louisiana, Lat: 32.6187, Lng: -93.2762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Rosa, Texas 26.2561 -97.8252 matched with DB +City: Santa Rosa, state: California, Lat: 38.4458, Lng: -122.7067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Washington 46.6839 -123.7380 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beloit, Kansas 39.4645 -98.1082 matched with DB +City: Beloit, state: Wisconsin, Lat: 42.523, Lng: -89.0184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, Indiana 41.4226 -85.7492 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, Indiana 41.4226 -85.7492 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Arkansas 33.8056 -93.3909 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upland, Pennsylvania 39.8562 -75.3796 matched with DB +City: Upland, state: California, Lat: 34.1178, Lng: -117.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chico, Washington 47.6226 -122.7193 matched with DB +City: Chico, state: California, Lat: 39.7578, Lng: -121.8161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garner, Iowa 43.1000 -93.6031 matched with DB +City: Garner, state: North Carolina, Lat: 35.6936, Lng: -78.6181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, South Dakota 43.3032 -96.5848 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, South Dakota 43.3032 -96.5848 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, South Dakota 43.3032 -96.5848 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, South Dakota 43.3032 -96.5848 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, South Dakota 43.3032 -96.5848 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, South Dakota 43.3032 -96.5848 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Montana 48.5031 -111.8614 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingman, Kansas 37.6480 -98.1167 matched with DB +City: Kingman, state: Arizona, Lat: 35.217, Lng: -114.0105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Onalaska, Texas 30.8209 -95.1111 matched with DB +City: Onalaska, state: Wisconsin, Lat: 43.8883, Lng: -91.2075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Doylestown, Ohio 40.9700 -81.6954 matched with DB +City: Doylestown, state: Pennsylvania, Lat: 40.2962, Lng: -75.1393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Indiana 40.1408 -87.3917 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Indiana 40.1408 -87.3917 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Indiana 40.1408 -87.3917 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Indiana 40.1408 -87.3917 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Indiana 40.1408 -87.3917 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Wisconsin 45.1257 -92.6731 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Wisconsin 45.1257 -92.6731 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Wisconsin 45.1257 -92.6731 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Virginia 38.8661 -77.8453 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Virginia 38.8661 -77.8453 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Virginia 38.8661 -77.8453 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Virginia 38.8661 -77.8453 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley, Nebraska 41.3148 -96.3566 matched with DB +City: Valley, state: Alabama, Lat: 32.8088, Lng: -85.181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Illinois 38.3541 -89.3770 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Pennsylvania 41.8062 -77.0787 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Pennsylvania 41.8062 -77.0787 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Pennsylvania 41.8062 -77.0787 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Pennsylvania 41.8062 -77.0787 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shenandoah, Virginia 38.4875 -78.6171 matched with DB +City: Shenandoah, state: Louisiana, Lat: 30.4019, Lng: -91.002, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eunice, New Mexico 32.4461 -103.1986 matched with DB +City: Eunice, state: Louisiana, Lat: 30.4904, Lng: -92.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Solon, Iowa 41.8055 -91.4961 matched with DB +City: Solon, state: Ohio, Lat: 41.3865, Lng: -81.44, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgecrest, Florida 27.8923 -82.8074 matched with DB +City: Ridgecrest, state: California, Lat: 35.6308, Lng: -117.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Grove, Florida 30.1812 -85.6268 matched with DB +City: Cedar Grove, state: New Jersey, Lat: 40.8565, Lng: -74.2288, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olney, Texas 33.3644 -98.7585 matched with DB +City: Olney, state: Maryland, Lat: 39.1465, Lng: -77.0715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Olney, Texas 33.3644 -98.7585 matched with DB +City: Olney, state: Illinois, Lat: 38.7285, Lng: -88.0839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Oregon 42.3127 -122.9692 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Oregon 42.3127 -122.9692 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Oregon 42.3127 -122.9692 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Oregon 42.3127 -122.9692 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Oregon 42.3127 -122.9692 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Oregon 42.3127 -122.9692 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunset, Louisiana 30.4083 -92.0644 matched with DB +City: Sunset, state: Florida, Lat: 25.706, Lng: -80.353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Georgia 32.0102 -81.2655 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Georgia 32.0102 -81.2655 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Georgia 32.0102 -81.2655 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Georgia 32.0102 -81.2655 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Missouri 38.5319 -93.5227 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Missouri 38.5319 -93.5227 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Missouri 38.5319 -93.5227 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Washington 47.7927 -122.5078 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Washington 47.7927 -122.5078 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Washington 47.7927 -122.5078 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Ridge, Pennsylvania 41.1355 -74.9923 matched with DB +City: Pine Ridge, state: Florida, Lat: 28.933, Lng: -82.4761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brent, Alabama 32.9421 -87.1753 matched with DB +City: Brent, state: Florida, Lat: 30.4727, Lng: -87.2495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Girard, Pennsylvania 42.0042 -80.3192 matched with DB +City: Girard, state: Ohio, Lat: 41.1665, Lng: -80.6963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, New York 42.0992 -79.3201 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, New York 42.0992 -79.3201 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, New York 42.0992 -79.3201 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, New York 42.0992 -79.3201 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, New York 42.0992 -79.3201 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Alabama 33.4396 -86.9454 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Alabama 33.4396 -86.9454 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Alabama 33.4396 -86.9454 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Mississippi 33.4521 -88.3399 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamstown, West Virginia 39.3987 -81.4549 matched with DB +City: Williamstown, state: New Jersey, Lat: 39.6874, Lng: -74.9786, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monrovia, Maryland 39.3570 -77.2747 matched with DB +City: Monrovia, state: California, Lat: 34.165, Lng: -117.9921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williston, Florida 29.3740 -82.4579 matched with DB +City: Williston, state: North Dakota, Lat: 48.1814, Lng: -103.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Williston, Florida 29.3740 -82.4579 matched with DB +City: Williston, state: Vermont, Lat: 44.4345, Lng: -73.0888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Lake, Texas 31.1941 -101.4534 matched with DB +City: Big Lake, state: Minnesota, Lat: 45.3417, Lng: -93.7434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Simpsonville, Kentucky 38.2167 -85.3515 matched with DB +City: Simpsonville, state: South Carolina, Lat: 34.7287, Lng: -82.2569, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hilliard, Florida 30.6866 -81.9212 matched with DB +City: Hilliard, state: Ohio, Lat: 40.0353, Lng: -83.1578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, West Virginia 38.5292 -81.8857 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, West Virginia 38.5292 -81.8857 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, New Jersey 40.6966 -74.2693 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, New Jersey 40.6966 -74.2693 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, New Jersey 40.6966 -74.2693 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Arkansas 36.0985 -93.7363 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Arkansas 36.0985 -93.7363 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baltimore, Ohio 39.8460 -82.6046 matched with DB +City: Baltimore, state: Maryland, Lat: 39.3051, Lng: -76.6144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Illinois 38.9872 -88.1643 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Illinois 38.9872 -88.1643 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Illinois 38.9872 -88.1643 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Illinois 38.9872 -88.1643 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Virginia 38.4106 -78.6161 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, New York 40.9093 -72.6695 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, New York 40.9093 -72.6695 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, New York 40.9093 -72.6695 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, New York 40.9093 -72.6695 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Versailles, Ohio 40.2220 -84.4831 matched with DB +City: Versailles, state: Kentucky, Lat: 38.0486, Lng: -84.7258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, Georgia 32.0926 -83.7868 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, Georgia 32.0926 -83.7868 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millington, New Jersey 40.6763 -74.5159 matched with DB +City: Millington, state: Tennessee, Lat: 35.335, Lng: -89.8991, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, Iowa 41.5898 -91.0272 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Pennsylvania 41.8970 -79.8437 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Pennsylvania 41.8970 -79.8437 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Pennsylvania 41.8970 -79.8437 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Pennsylvania 41.8970 -79.8437 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehall, Michigan 43.4003 -86.3405 matched with DB +City: Whitehall, state: Ohio, Lat: 39.9682, Lng: -82.8833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Whitehall, Michigan 43.4003 -86.3405 matched with DB +City: Whitehall, state: Pennsylvania, Lat: 40.6571, Lng: -75.5046, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Georgia 32.1249 -81.3077 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Georgia 32.1249 -81.3077 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Georgia 32.1249 -81.3077 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Florida 30.4716 -83.4130 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Florida 30.4716 -83.4130 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Florida 30.4716 -83.4130 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Florida 30.4716 -83.4130 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Florida 30.4716 -83.4130 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackhawk, South Dakota 44.1514 -103.3340 matched with DB +City: Blackhawk, state: California, Lat: 37.8159, Lng: -121.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Michigan 42.0699 -83.9687 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland, Georgia 31.0409 -83.0748 matched with DB +City: Lakeland, state: Tennessee, Lat: 35.2585, Lng: -89.7308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeland, Georgia 31.0409 -83.0748 matched with DB +City: Lakeland, state: Florida, Lat: 28.0557, Lng: -81.9545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roslyn, New York 40.7991 -73.6491 matched with DB +City: Roslyn, state: Pennsylvania, Lat: 40.1311, Lng: -75.1374, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Utah 41.9231 -111.8076 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Utah 41.9231 -111.8076 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Utah 41.9231 -111.8076 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Utah 41.9231 -111.8076 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Utah 41.9231 -111.8076 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Pennsylvania 42.0180 -80.3465 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, Washington 47.6273 -122.2427 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Kansas 37.1716 -94.8440 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kansas 37.1716 -94.8440 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kansas 37.1716 -94.8440 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kansas 37.1716 -94.8440 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kansas 37.1716 -94.8440 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, North Carolina 35.3650 -79.8918 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, North Carolina 35.3650 -79.8918 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, North Carolina 35.3650 -79.8918 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, North Carolina 35.3650 -79.8918 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, North Carolina 35.3650 -79.8918 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, North Carolina 35.3650 -79.8918 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Ridge, South Dakota 43.0270 -102.5524 matched with DB +City: Pine Ridge, state: Florida, Lat: 28.933, Lng: -82.4761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Platteville, Colorado 40.2220 -104.8340 matched with DB +City: Platteville, state: Wisconsin, Lat: 42.728, Lng: -90.4681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, California 33.7146 -117.0775 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, California 33.7146 -117.0775 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, California 33.7146 -117.0775 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, California 33.7146 -117.0775 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, California 33.7146 -117.0775 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Georgia 33.6065 -84.3411 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, Missouri 38.7442 -90.2110 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, Missouri 38.7442 -90.2110 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, New York 43.0180 -78.4978 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Minnesota 45.0997 -93.6884 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Minnesota 45.0997 -93.6884 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Minnesota 45.0997 -93.6884 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, Louisiana 30.4080 -91.0906 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Louisiana 30.4080 -91.0906 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Louisiana 30.4080 -91.0906 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, North Carolina 35.2337 -80.1147 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, North Carolina 35.2337 -80.1147 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, Pennsylvania 40.4073 -79.9097 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Kentucky 37.3321 -88.0795 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kentucky 37.3321 -88.0795 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kentucky 37.3321 -88.0795 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kentucky 37.3321 -88.0795 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kentucky 37.3321 -88.0795 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frisco, Colorado 39.5791 -106.0915 matched with DB +City: Frisco, state: Texas, Lat: 33.156, Lng: -96.8216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wendell, Idaho 42.7745 -114.7026 matched with DB +City: Wendell, state: North Carolina, Lat: 35.7819, Lng: -78.3952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loudonville, Ohio 40.6342 -82.2328 matched with DB +City: Loudonville, state: New York, Lat: 42.7068, Lng: -73.7665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Texas 31.6997 -98.1208 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Texas 31.6997 -98.1208 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Texas 31.6997 -98.1208 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Texas 31.6997 -98.1208 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calera, Oklahoma 33.9303 -96.4293 matched with DB +City: Calera, state: Alabama, Lat: 33.1254, Lng: -86.7449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Arrowhead, Maine 43.6634 -70.7382 matched with DB +City: Lake Arrowhead, state: California, Lat: 34.2531, Lng: -117.1944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgetown, Mississippi 34.8907 -89.9069 matched with DB +City: Bridgetown, state: Ohio, Lat: 39.1552, Lng: -84.6359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Alabama 31.1658 -85.4697 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Alabama 31.1658 -85.4697 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Virginia 37.0340 -77.0956 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Virginia 37.0340 -77.0956 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, West Virginia 38.0622 -81.1083 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, West Virginia 38.0622 -81.1083 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, West Virginia 38.0622 -81.1083 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Monroe, Michigan 41.9143 -83.4317 matched with DB +City: West Monroe, state: Louisiana, Lat: 32.512, Lng: -92.1513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chandler, Oklahoma 35.7224 -96.8925 matched with DB +City: Chandler, state: Arizona, Lat: 33.2825, Lng: -111.8514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Providence, Kentucky 37.3993 -87.7509 matched with DB +City: Providence, state: Rhode Island, Lat: 41.823, Lng: -71.4187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, South Carolina 34.6724 -80.7215 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, South Carolina 34.6724 -80.7215 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, West Virginia 38.0631 -81.8046 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, West Virginia 38.0631 -81.8046 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, West Virginia 38.0631 -81.8046 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, West Virginia 38.0631 -81.8046 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, West Virginia 38.0631 -81.8046 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stamford, Texas 33.0156 -99.6716 matched with DB +City: Stamford, state: Connecticut, Lat: 41.1039, Lng: -73.5585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Tennessee 35.4813 -89.7353 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Tennessee 35.4813 -89.7353 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Tennessee 35.4813 -89.7353 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williston, South Carolina 33.4018 -81.4220 matched with DB +City: Williston, state: North Dakota, Lat: 48.1814, Lng: -103.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Williston, South Carolina 33.4018 -81.4220 matched with DB +City: Williston, state: Vermont, Lat: 44.4345, Lng: -73.0888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victor, Idaho 43.6014 -111.1108 matched with DB +City: Victor, state: New York, Lat: 42.9894, Lng: -77.4277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Alabama 34.5370 -86.4128 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Texas 33.6110 -95.0563 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Texas 33.6110 -95.0563 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Texas 33.6110 -95.0563 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, Arkansas 35.8635 -92.1041 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Texas 31.7183 -96.1697 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Texas 31.7183 -96.1697 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Texas 31.7183 -96.1697 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Texas 31.7183 -96.1697 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindsay, Oklahoma 34.8393 -97.6105 matched with DB +City: Lindsay, state: California, Lat: 36.2082, Lng: -119.0897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haverhill, Florida 26.6910 -80.1217 matched with DB +City: Haverhill, state: Massachusetts, Lat: 42.7838, Lng: -71.0871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Paso, Illinois 40.7405 -89.0183 matched with DB +City: El Paso, state: Texas, Lat: 31.8476, Lng: -106.43, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Indiana 40.3056 -85.2331 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Indiana 40.3056 -85.2331 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Indiana 40.3056 -85.2331 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Indiana 40.3056 -85.2331 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norco, Louisiana 29.9986 -90.4036 matched with DB +City: Norco, state: California, Lat: 33.9252, Lng: -117.5498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, South Carolina 34.9609 -81.9929 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, South Carolina 34.9609 -81.9929 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Kentucky 37.6922 -85.2193 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ithaca, Michigan 43.2911 -84.5956 matched with DB +City: Ithaca, state: New York, Lat: 42.4442, Lng: -76.5032, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Minnesota 43.6344 -91.5009 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pembroke, North Carolina 34.6766 -79.1935 matched with DB +City: Pembroke, state: Massachusetts, Lat: 42.0655, Lng: -70.8014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inwood, West Virginia 39.3538 -78.0552 matched with DB +City: Inwood, state: New York, Lat: 40.6219, Lng: -73.7506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, New Mexico 36.4426 -103.1574 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Mexico 36.4426 -103.1574 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Mexico 36.4426 -103.1574 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Mexico 36.4426 -103.1574 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, New Mexico 36.4426 -103.1574 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Delaware 39.7780 -75.6046 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ross, Ohio 39.3146 -84.6599 matched with DB +City: Ross, state: Pennsylvania, Lat: 40.5256, Lng: -80.0243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, West Virginia 38.9958 -79.1277 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davis, Oklahoma 34.4575 -97.1566 matched with DB +City: Davis, state: California, Lat: 38.5553, Lng: -121.737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Oklahoma 33.9360 -97.1248 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Oklahoma 33.9360 -97.1248 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, Iowa 41.9283 -91.7791 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, Pennsylvania 40.7279 -75.3919 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, Pennsylvania 40.7279 -75.3919 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Ohio 41.5754 -84.0091 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burley, Washington 47.4166 -122.6377 matched with DB +City: Burley, state: Idaho, Lat: 42.5379, Lng: -113.7926, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Pennsylvania 40.0613 -76.7195 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Pennsylvania 40.0613 -76.7195 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Pennsylvania 40.0613 -76.7195 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Pennsylvania 40.0613 -76.7195 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Pennsylvania 40.0613 -76.7195 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Pennsylvania 40.0613 -76.7195 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, California 35.3464 -118.9851 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naples, Utah 40.4317 -109.4913 matched with DB +City: Naples, state: Florida, Lat: 26.1504, Lng: -81.7936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Mississippi 34.1907 -88.7204 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Mississippi 34.1907 -88.7204 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Minnesota 45.6284 -94.5675 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Minnesota 45.6284 -94.5675 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Minnesota 45.6284 -94.5675 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Minnesota 45.6284 -94.5675 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Arkansas 33.2248 -91.7972 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Lake, New Jersey 40.1539 -74.0273 matched with DB +City: Spring Lake, state: North Carolina, Lat: 35.1843, Lng: -78.9962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Texas 33.5958 -99.2580 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Texas 33.5958 -99.2580 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvine, Kentucky 37.6964 -83.9678 matched with DB +City: Irvine, state: California, Lat: 33.6772, Lng: -117.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centreville, Alabama 32.9598 -87.1334 matched with DB +City: Centreville, state: Virginia, Lat: 38.839, Lng: -77.4389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Ohio 38.4099 -82.5283 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Mississippi 32.5711 -89.1152 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Mississippi 32.5711 -89.1152 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Mississippi 32.5711 -89.1152 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, Maryland 38.9764 -75.8080 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, North Carolina 35.3224 -79.4114 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walworth, Wisconsin 42.5305 -88.5939 matched with DB +City: Walworth, state: New York, Lat: 43.1633, Lng: -77.3131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sleepy Hollow, California 38.0121 -122.5878 matched with DB +City: Sleepy Hollow, state: New York, Lat: 41.0936, Lng: -73.8722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eufaula, Oklahoma 35.2923 -95.5863 matched with DB +City: Eufaula, state: Alabama, Lat: 31.9102, Lng: -85.1505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Mississippi 31.2808 -90.4670 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Mississippi 31.2808 -90.4670 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Mississippi 31.2808 -90.4670 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, West Virginia 38.4330 -82.1303 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, West Virginia 38.4330 -82.1303 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, West Virginia 38.4330 -82.1303 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, West Virginia 38.4330 -82.1303 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, West Virginia 38.4330 -82.1303 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, West Virginia 38.4330 -82.1303 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossmoor, New Jersey 40.3349 -74.4708 matched with DB +City: Rossmoor, state: California, Lat: 33.7887, Lng: -118.0803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Pennsylvania 40.0574 -76.5515 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Pennsylvania 40.0574 -76.5515 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Virginia 36.8095 -76.7406 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Virginia 36.8095 -76.7406 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Virginia 36.8095 -76.7406 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lodi, Ohio 41.0348 -82.0124 matched with DB +City: Lodi, state: New Jersey, Lat: 40.8784, Lng: -74.0814, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lodi, Ohio 41.0348 -82.0124 matched with DB +City: Lodi, state: California, Lat: 38.1218, Lng: -121.2932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, New Jersey 40.0115 -75.0148 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, New Jersey 40.0115 -75.0148 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Washington 46.3168 -117.9767 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Washington 46.3168 -117.9767 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Washington 46.3168 -117.9767 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockport, Louisiana 29.6443 -90.5324 matched with DB +City: Lockport, state: New York, Lat: 43.1698, Lng: -78.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockport, Louisiana 29.6443 -90.5324 matched with DB +City: Lockport, state: Illinois, Lat: 41.5906, Lng: -88.0293, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Indiana 39.8321 -84.9922 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Indiana 39.8321 -84.9922 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton, Pennsylvania 39.9115 -75.3267 matched with DB +City: Morton, state: Illinois, Lat: 40.6135, Lng: -89.4669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, California 36.4304 -119.8671 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, California 36.4304 -119.8671 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, California 36.4304 -119.8671 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Wyoming 42.8680 -106.2524 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Arkansas 35.9490 -94.4174 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Arkansas 35.9490 -94.4174 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Arkansas 35.9490 -94.4174 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Arkansas 35.9490 -94.4174 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Georgia 32.3636 -81.3030 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abbeville, Georgia 31.9925 -83.3068 matched with DB +City: Abbeville, state: Louisiana, Lat: 29.9751, Lng: -92.1265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey, Tennessee 36.1447 -85.2643 matched with DB +City: Monterey, state: California, Lat: 36.5919, Lng: -121.8808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomaston, New York 40.7875 -73.7153 matched with DB +City: Thomaston, state: Georgia, Lat: 32.8907, Lng: -84.3272, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stroud, Oklahoma 35.7686 -96.6467 matched with DB +City: Stroud, state: Pennsylvania, Lat: 41.0001, Lng: -75.2173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Valley, Missouri 39.2171 -94.4811 matched with DB +City: Pleasant Valley, state: New York, Lat: 41.7697, Lng: -73.8049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iona, Idaho 43.5271 -111.9310 matched with DB +City: Iona, state: Florida, Lat: 26.516, Lng: -81.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle Point, Alabama 33.3937 -86.6779 matched with DB +City: Eagle Point, state: Oregon, Lat: 42.4677, Lng: -122.8016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Indiana 41.4274 -84.8721 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Indiana 41.4274 -84.8721 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Pennsylvania 39.9114 -77.5652 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Pennsylvania 39.9114 -77.5652 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Pennsylvania 39.9114 -77.5652 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Park, New Mexico 32.2767 -106.7462 matched with DB +City: University Park, state: Texas, Lat: 32.8506, Lng: -96.7937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Kansas 38.3527 -97.1992 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, North Carolina 34.9994 -78.0928 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Illinois 40.3900 -91.3623 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Illinois 40.3900 -91.3623 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Illinois 40.3900 -91.3623 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Illinois 40.3900 -91.3623 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, Pennsylvania 40.2830 -78.8907 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Pennsylvania 40.2830 -78.8907 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Pennsylvania 40.2830 -78.8907 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Pennsylvania 40.2830 -78.8907 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Maryland 39.3653 -77.5406 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Maryland 39.3653 -77.5406 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Maryland 39.3653 -77.5406 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Rosa, New Mexico 34.9361 -104.6769 matched with DB +City: Santa Rosa, state: California, Lat: 38.4458, Lng: -122.7067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, Missouri 37.1491 -90.6970 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawthorne, Nevada 38.5253 -118.6260 matched with DB +City: Hawthorne, state: New Jersey, Lat: 40.9579, Lng: -74.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hawthorne, Nevada 38.5253 -118.6260 matched with DB +City: Hawthorne, state: California, Lat: 33.9147, Lng: -118.3476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denver, North Carolina 35.5344 -81.0340 matched with DB +City: Denver, state: Colorado, Lat: 39.762, Lng: -104.8758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Imperial, Pennsylvania 40.4536 -80.2499 matched with DB +City: Imperial, state: California, Lat: 32.839, Lng: -115.572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgantown, Kentucky 37.2174 -86.7001 matched with DB +City: Morgantown, state: West Virginia, Lat: 39.6383, Lng: -79.9464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Missouri 40.1295 -91.5266 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Missouri 40.1295 -91.5266 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Missouri 40.1295 -91.5266 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Missouri 40.1295 -91.5266 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Missouri 40.1295 -91.5266 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Missouri 40.1295 -91.5266 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Richmond, Ohio 38.9620 -84.2779 matched with DB +City: New Richmond, state: Wisconsin, Lat: 45.125, Lng: -92.5377, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highlands, California 37.5201 -122.3459 matched with DB +City: Highlands, state: New York, Lat: 41.3601, Lng: -74.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norton, Kansas 39.8362 -99.8916 matched with DB +City: Norton, state: Ohio, Lat: 41.0294, Lng: -81.6461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norton, Kansas 39.8362 -99.8916 matched with DB +City: Norton, state: Massachusetts, Lat: 41.964, Lng: -71.1842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Townsend, Delaware 39.3968 -75.6943 matched with DB +City: Townsend, state: Massachusetts, Lat: 42.6671, Lng: -71.7115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Louisiana 32.5506 -92.9218 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Louisiana 32.5506 -92.9218 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, South Carolina 32.8676 -81.1093 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, South Carolina 32.8676 -81.1093 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, South Carolina 32.8676 -81.1093 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Wisconsin 45.5358 -92.0291 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Wisconsin 45.5358 -92.0291 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Wisconsin 42.8643 -89.5402 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Wisconsin 42.8643 -89.5402 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandusky, Michigan 43.4212 -82.8333 matched with DB +City: Sandusky, state: Ohio, Lat: 41.4468, Lng: -82.7024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, South Carolina 33.9616 -81.1119 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, South Carolina 33.9616 -81.1119 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, South Carolina 33.9616 -81.1119 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesville, Ohio 39.5329 -84.0904 matched with DB +City: Waynesville, state: North Carolina, Lat: 35.4854, Lng: -82.9996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Georgia 32.9955 -82.4001 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Georgia 32.9955 -82.4001 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Georgia 32.9955 -82.4001 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, Tennessee 35.8247 -86.0723 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Tennessee 35.8247 -86.0723 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Tennessee 35.8247 -86.0723 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Tennessee 35.8247 -86.0723 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oklahoma 36.2705 -98.4769 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allendale, South Carolina 33.0080 -81.3092 matched with DB +City: Allendale, state: Michigan, Lat: 42.9845, Lng: -85.9499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Arkansas 35.5637 -90.7216 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Arkansas 35.5637 -90.7216 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Foley, Minnesota 45.6636 -93.9096 matched with DB +City: Foley, state: Alabama, Lat: 30.3983, Lng: -87.665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Illinois 41.5293 -88.6804 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Kentucky 36.5145 -88.8820 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Kentucky 36.5145 -88.8820 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newtown, Ohio 39.1243 -84.3517 matched with DB +City: Newtown, state: Pennsylvania, Lat: 39.992, Lng: -75.4106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Florida 28.4879 -81.3771 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Florida 28.4879 -81.3771 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Angola, New York 42.6379 -79.0295 matched with DB +City: Angola, state: Indiana, Lat: 41.6433, Lng: -85.005, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Iowa 40.7487 -92.4174 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Ridge, South Carolina 33.9082 -81.0977 matched with DB +City: Pine Ridge, state: Florida, Lat: 28.933, Lng: -82.4761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Texas 32.4258 -96.6724 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Texas 32.4258 -96.6724 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Illinois 38.6083 -89.6852 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Illinois 38.6083 -89.6852 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Illinois 38.6083 -89.6852 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Oregon 45.2198 -123.0781 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Oregon 45.2198 -123.0781 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Oregon 45.2198 -123.0781 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Illinois 38.7024 -90.1501 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Illinois 38.7024 -90.1501 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Illinois 38.7024 -90.1501 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Illinois 38.7024 -90.1501 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Illinois 38.7024 -90.1501 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Virginia 37.0987 -80.6831 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Virginia 37.0987 -80.6831 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Virginia 37.0987 -80.6831 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Kentucky 37.4507 -86.8930 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Kentucky 37.4507 -86.8930 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Kentucky 37.4507 -86.8930 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colonial Heights, Tennessee 36.4853 -82.5069 matched with DB +City: Colonial Heights, state: Virginia, Lat: 37.265, Lng: -77.3969, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Texas 32.1317 -101.7927 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, North Carolina 35.8555 -79.5682 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, North Carolina 35.8555 -79.5682 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Hill, Pennsylvania 40.3771 -75.4838 matched with DB +City: Red Hill, state: South Carolina, Lat: 33.7777, Lng: -79.0111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: LaGrange, Ohio 41.2404 -82.1175 matched with DB +City: LaGrange, state: Georgia, Lat: 33.0274, Lng: -85.0384, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Marys, Kansas 39.1942 -96.0643 matched with DB +City: St. Marys, state: Pennsylvania, Lat: 41.4574, Lng: -78.5342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Marys, Kansas 39.1942 -96.0643 matched with DB +City: St. Marys, state: Georgia, Lat: 30.7567, Lng: -81.5722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Alabama 31.1055 -85.6916 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Alabama 31.1055 -85.6916 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Alabama 31.1055 -85.6916 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Pennsylvania 40.6374 -80.4565 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Pennsylvania 40.6374 -80.4565 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Pennsylvania 40.6374 -80.4565 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage, Pennsylvania 40.3868 -78.6746 matched with DB +City: Portage, state: Wisconsin, Lat: 43.5489, Lng: -89.4658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Pennsylvania 40.3868 -78.6746 matched with DB +City: Portage, state: Michigan, Lat: 42.2, Lng: -85.5906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Pennsylvania 40.3868 -78.6746 matched with DB +City: Portage, state: Indiana, Lat: 41.5856, Lng: -87.1797, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown, Florida 30.1856 -82.6026 matched with DB +City: Watertown, state: South Dakota, Lat: 44.9094, Lng: -97.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Florida 30.1856 -82.6026 matched with DB +City: Watertown, state: New York, Lat: 43.9734, Lng: -75.9094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Florida 30.1856 -82.6026 matched with DB +City: Watertown, state: Wisconsin, Lat: 43.1893, Lng: -88.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Michigan 42.5187 -83.3030 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Pennsylvania 40.3377 -76.9337 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Pennsylvania 40.3377 -76.9337 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Pennsylvania 40.3377 -76.9337 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Pennsylvania 40.3377 -76.9337 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, Idaho 42.3260 -111.2988 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lima, Pennsylvania 39.9194 -75.4416 matched with DB +City: Lima, state: Ohio, Lat: 40.741, Lng: -84.112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Janesville, California 40.2993 -120.5024 matched with DB +City: Janesville, state: Wisconsin, Lat: 42.6854, Lng: -89.0135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, North Carolina 35.3064 -77.7890 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, North Carolina 35.3064 -77.7890 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, North Carolina 35.3064 -77.7890 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Girard, Kansas 37.5094 -94.8456 matched with DB +City: Girard, state: Ohio, Lat: 41.1665, Lng: -80.6963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Arizona 33.2851 -111.1109 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Arizona 33.2851 -111.1109 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Ohio 38.9627 -84.0846 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Derry, Pennsylvania 40.3335 -79.3011 matched with DB +City: Derry, state: New Hampshire, Lat: 42.8888, Lng: -71.2804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derry, Pennsylvania 40.3335 -79.3011 matched with DB +City: Derry, state: Pennsylvania, Lat: 40.2709, Lng: -76.6561, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Juneau, Wisconsin 43.4053 -88.7041 matched with DB +City: Juneau, state: Alaska, Lat: 58.4546, Lng: -134.1739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkville, New York 43.1124 -75.2739 matched with DB +City: Yorkville, state: Illinois, Lat: 41.6563, Lng: -88.4507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valle Vista, Arizona 35.4109 -113.8627 matched with DB +City: Valle Vista, state: California, Lat: 33.7436, Lng: -116.8871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Arkansas 36.1044 -94.0033 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Arkansas 36.1044 -94.0033 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delhi, Louisiana 32.4529 -91.4900 matched with DB +City: Delhi, state: California, Lat: 37.4306, Lng: -120.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Pennsylvania 40.5050 -79.8419 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Pennsylvania 40.5050 -79.8419 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Minnesota 45.6521 -95.3649 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Kentucky 38.3163 -84.0333 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, Mississippi 34.0075 -90.0552 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Mississippi 34.0075 -90.0552 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Mississippi 34.0075 -90.0552 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Pennsylvania 40.3615 -74.9574 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Castle Rock, Washington 46.2708 -122.9050 matched with DB +City: Castle Rock, state: Colorado, Lat: 39.3763, Lng: -104.8535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockledge, Pennsylvania 40.0822 -75.0898 matched with DB +City: Rockledge, state: Florida, Lat: 28.3203, Lng: -80.736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Tennessee 35.3792 -87.9927 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Tennessee 35.3792 -87.9927 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Lafayette, Ohio 40.2760 -81.7518 matched with DB +City: West Lafayette, state: Indiana, Lat: 40.4432, Lng: -86.9238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Texas 30.2115 -95.7420 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leavenworth, Washington 47.5952 -120.6628 matched with DB +City: Leavenworth, state: Kansas, Lat: 39.3239, Lng: -94.924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopewell, Tennessee 35.2388 -84.9139 matched with DB +City: Hopewell, state: Virginia, Lat: 37.2915, Lng: -77.2985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hopewell, Tennessee 35.2388 -84.9139 matched with DB +City: Hopewell, state: Pennsylvania, Lat: 40.5906, Lng: -80.2731, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sylvania, Georgia 32.7466 -81.6409 matched with DB +City: Sylvania, state: Ohio, Lat: 41.71, Lng: -83.7092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Kansas 38.1931 -95.7452 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murfreesboro, North Carolina 36.4419 -77.0968 matched with DB +City: Murfreesboro, state: Tennessee, Lat: 35.849, Lng: -86.4121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, Idaho 42.9441 -112.8384 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Idaho 42.9441 -112.8384 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Idaho 42.9441 -112.8384 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Idaho 42.9441 -112.8384 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Idaho 42.9441 -112.8384 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Park, Maryland 38.9719 -76.9445 matched with DB +City: University Park, state: Texas, Lat: 32.8506, Lng: -96.7937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, Mississippi 34.5046 -88.2080 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Mississippi 34.5046 -88.2080 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Mississippi 34.5046 -88.2080 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Mississippi 34.5046 -88.2080 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, Ohio 39.0815 -84.1716 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, Ohio 39.0815 -84.1716 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lennox, South Dakota 43.3495 -96.8937 matched with DB +City: Lennox, state: California, Lat: 33.938, Lng: -118.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmont, Illinois 41.5614 -88.0587 matched with DB +City: Fairmont, state: West Virginia, Lat: 39.4768, Lng: -80.1491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmont, Illinois 41.5614 -88.0587 matched with DB +City: Fairmont, state: Minnesota, Lat: 43.6441, Lng: -94.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Georgia 33.2955 -83.6860 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Florida 30.5423 -83.8722 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesterfield, Indiana 40.1130 -85.5943 matched with DB +City: Chesterfield, state: Missouri, Lat: 38.6589, Lng: -90.5803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chesterfield, Indiana 40.1130 -85.5943 matched with DB +City: Chesterfield, state: New Jersey, Lat: 40.1166, Lng: -74.6459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, Arkansas 35.2948 -94.0484 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Arkansas 35.2948 -94.0484 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Arkansas 35.2948 -94.0484 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl River, Louisiana 30.3688 -89.7495 matched with DB +City: Pearl River, state: New York, Lat: 41.0615, Lng: -74.0047, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Ohio 39.0555 -84.0478 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, Indiana 40.4173 -85.6477 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, Indiana 40.4173 -85.6477 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Ohio 40.7752 -80.7628 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Utah 41.7362 -112.1627 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethlehem, West Virginia 40.0451 -80.6898 matched with DB +City: Bethlehem, state: Pennsylvania, Lat: 40.6266, Lng: -75.3679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethlehem, West Virginia 40.0451 -80.6898 matched with DB +City: Bethlehem, state: New York, Lat: 42.5856, Lng: -73.8219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morrisville, Vermont 44.5583 -72.5933 matched with DB +City: Morrisville, state: Pennsylvania, Lat: 40.2074, Lng: -74.78, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morrisville, Vermont 44.5583 -72.5933 matched with DB +City: Morrisville, state: North Carolina, Lat: 35.8368, Lng: -78.8348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, New Mexico 36.8720 -107.9551 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, Iowa 42.1848 -91.7798 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fillmore, Utah 38.9642 -112.3386 matched with DB +City: Fillmore, state: California, Lat: 34.3989, Lng: -118.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Illinois 41.3209 -88.5888 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Michigan 42.2047 -86.1661 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Michigan 42.2047 -86.1661 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Michigan 42.2047 -86.1661 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Montana 48.0181 -114.2274 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Montana 48.0181 -114.2274 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Montana 48.0181 -114.2274 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Ohio 40.1174 -84.3509 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Ohio 40.1174 -84.3509 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Ohio 40.1174 -84.3509 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Ohio 40.1174 -84.3509 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Ohio 40.1174 -84.3509 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, Missouri 36.6532 -94.4441 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Missouri 36.6532 -94.4441 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Missouri 36.6532 -94.4441 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Illinois 40.4142 -91.1276 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, Missouri 36.9936 -91.7019 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Iowa 42.4321 -92.4522 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Iowa 42.4321 -92.4522 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Iowa 42.4321 -92.4522 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Iowa 42.4321 -92.4522 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Iowa 42.4321 -92.4522 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Idaho 43.4684 -114.2551 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Idaho 43.4684 -114.2551 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Idaho 43.4684 -114.2551 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gillette, New Jersey 40.6921 -74.4629 matched with DB +City: Gillette, state: Wyoming, Lat: 44.2752, Lng: -105.4982, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Versailles, Missouri 38.4333 -92.8453 matched with DB +City: Versailles, state: Kentucky, Lat: 38.0486, Lng: -84.7258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Falmouth, Kentucky 38.6708 -84.3311 matched with DB +City: Falmouth, state: Maine, Lat: 43.7476, Lng: -70.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Falmouth, Kentucky 38.6708 -84.3311 matched with DB +City: Falmouth, state: Massachusetts, Lat: 41.5913, Lng: -70.5912, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Illinois 39.2948 -90.4062 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Illinois 39.2948 -90.4062 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lathrop, Missouri 39.5567 -94.3077 matched with DB +City: Lathrop, state: California, Lat: 37.809, Lng: -121.3131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, California 38.9112 -120.8356 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, California 38.9112 -120.8356 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, California 38.9112 -120.8356 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearwater, Kansas 37.5096 -97.4975 matched with DB +City: Clearwater, state: Florida, Lat: 27.979, Lng: -82.7623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pembroke, Georgia 32.1455 -81.6185 matched with DB +City: Pembroke, state: Massachusetts, Lat: 42.0655, Lng: -70.8014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hewitt, New Jersey 41.1601 -74.3311 matched with DB +City: Hewitt, state: Texas, Lat: 31.452, Lng: -97.196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reidsville, Georgia 32.0871 -82.1244 matched with DB +City: Reidsville, state: North Carolina, Lat: 36.3376, Lng: -79.6725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ross, California 37.9638 -122.5615 matched with DB +City: Ross, state: Pennsylvania, Lat: 40.5256, Lng: -80.0243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Indiana 39.7666 -87.2295 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Mississippi 34.9224 -88.4432 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Mississippi 34.9224 -88.4432 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Mississippi 34.9224 -88.4432 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Mississippi 34.9224 -88.4432 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Mississippi 34.9224 -88.4432 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Mississippi 34.9224 -88.4432 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Virginia 38.9845 -77.4174 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Virginia 38.9845 -77.4174 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Virginia 38.9845 -77.4174 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belvidere, New Jersey 40.8295 -75.0728 matched with DB +City: Belvidere, state: Illinois, Lat: 42.2543, Lng: -88.8649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Ohio 41.0796 -82.4066 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Lake, Michigan 43.0733 -86.1944 matched with DB +City: Spring Lake, state: North Carolina, Lat: 35.1843, Lng: -78.9962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Utah 38.6230 -112.1196 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Nebraska 40.7722 -97.0535 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Nebraska 40.7722 -97.0535 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Nebraska 40.7722 -97.0535 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Nebraska 40.7722 -97.0535 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Texas 33.1760 -95.2253 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Texas 33.1760 -95.2253 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Texas 33.1760 -95.2253 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Texas 33.1760 -95.2253 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Texas 33.1760 -95.2253 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayward, Wisconsin 46.0094 -91.4826 matched with DB +City: Hayward, state: California, Lat: 37.6328, Lng: -122.0766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Harbor, Ohio 41.5121 -83.1424 matched with DB +City: Oak Harbor, state: Washington, Lat: 48.2964, Lng: -122.6333, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Michigan 43.6114 -86.3648 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmont, North Carolina 34.4947 -79.1136 matched with DB +City: Fairmont, state: West Virginia, Lat: 39.4768, Lng: -80.1491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmont, North Carolina 34.4947 -79.1136 matched with DB +City: Fairmont, state: Minnesota, Lat: 43.6441, Lng: -94.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennedy, California 37.9290 -121.2456 matched with DB +City: Kennedy, state: Pennsylvania, Lat: 40.4768, Lng: -80.1028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montague, Michigan 43.4128 -86.3636 matched with DB +City: Montague, state: Massachusetts, Lat: 42.5549, Lng: -72.5177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland, New York 43.0909 -76.2427 matched with DB +City: Lakeland, state: Tennessee, Lat: 35.2585, Lng: -89.7308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeland, New York 43.0909 -76.2427 matched with DB +City: Lakeland, state: Florida, Lat: 28.0557, Lng: -81.9545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Minnesota 43.6888 -92.3897 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Minnesota 43.6888 -92.3897 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Minnesota 43.6888 -92.3897 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trinity, Alabama 34.6011 -87.0816 matched with DB +City: Trinity, state: Florida, Lat: 28.1809, Lng: -82.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Arkansas 35.5798 -92.4543 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Kansas 38.2094 -98.2064 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Kansas 38.2094 -98.2064 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Kansas 38.2094 -98.2064 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchellville, Iowa 41.6685 -93.3661 matched with DB +City: Mitchellville, state: Maryland, Lat: 38.9358, Lng: -76.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewster, New York 41.3970 -73.6151 matched with DB +City: Brewster, state: Massachusetts, Lat: 41.7463, Lng: -70.0676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: The Hills, Texas 30.3465 -97.9864 matched with DB +City: The Hills, state: New Jersey, Lat: 40.6561, Lng: -74.6215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jesup, Iowa 42.4746 -92.0657 matched with DB +City: Jesup, state: Georgia, Lat: 31.5992, Lng: -81.8895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, New Jersey 40.0652 -74.9221 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salina, Utah 38.9387 -111.8652 matched with DB +City: Salina, state: Kansas, Lat: 38.8136, Lng: -97.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salina, Utah 38.9387 -111.8652 matched with DB +City: Salina, state: New York, Lat: 43.1023, Lng: -76.1768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, Washington 46.8917 -124.1118 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dyer, Tennessee 36.0710 -88.9921 matched with DB +City: Dyer, state: Indiana, Lat: 41.4977, Lng: -87.509, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blaine, Tennessee 36.1478 -83.6939 matched with DB +City: Blaine, state: Minnesota, Lat: 45.1696, Lng: -93.2077, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trinity, Texas 30.9445 -95.3736 matched with DB +City: Trinity, state: Florida, Lat: 28.1809, Lng: -82.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Pennsylvania 40.7811 -76.3451 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Pennsylvania 40.7811 -76.3451 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Pennsylvania 40.7811 -76.3451 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Pennsylvania 40.7811 -76.3451 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Pennsylvania 40.7811 -76.3451 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Pennsylvania 40.7811 -76.3451 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlborough, Missouri 38.5683 -90.3392 matched with DB +City: Marlborough, state: Massachusetts, Lat: 42.3494, Lng: -71.5468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marlborough, Missouri 38.5683 -90.3392 matched with DB +City: Marlborough, state: New York, Lat: 41.6337, Lng: -73.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryant, Washington 48.2400 -122.1638 matched with DB +City: Bryant, state: Arkansas, Lat: 34.6152, Lng: -92.4914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Florida 27.6380 -81.8244 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Florida 27.6380 -81.8244 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Michigan 41.8569 -84.3451 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Michigan 41.8569 -84.3451 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Michigan 41.8569 -84.3451 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Michigan 41.8569 -84.3451 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Michigan 41.8569 -84.3451 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Arkansas 34.6308 -92.5605 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Arkansas 34.6308 -92.5605 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Arkansas 34.6308 -92.5605 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Arkansas 34.6308 -92.5605 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Arkansas 34.6308 -92.5605 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Arkansas 34.6308 -92.5605 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Washington 45.8128 -122.5143 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Washington 45.8128 -122.5143 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Iowa 40.9231 -91.4012 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Florida 26.9529 -81.9925 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Florida 26.9529 -81.9925 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Florida 26.9529 -81.9925 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Louisiana 30.1123 -92.0710 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Louisiana 30.1123 -92.0710 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Louisiana 30.1123 -92.0710 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Louisiana 30.1123 -92.0710 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Louisiana 30.1123 -92.0710 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Louisiana 30.1123 -92.0710 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparks, Georgia 31.1693 -83.4405 matched with DB +City: Sparks, state: Nevada, Lat: 39.5736, Lng: -119.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Janesville, Minnesota 44.1198 -93.7096 matched with DB +City: Janesville, state: Wisconsin, Lat: 42.6854, Lng: -89.0135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, California 36.6524 -119.7908 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, California 36.6524 -119.7908 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, California 36.6524 -119.7908 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Tennessee 36.2566 -85.9430 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Georgia 31.8003 -81.4190 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parsons, Tennessee 35.6513 -88.1231 matched with DB +City: Parsons, state: Kansas, Lat: 37.3405, Lng: -95.2958, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Arizona 34.2625 -110.1424 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Minnesota 45.1381 -93.1714 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Minnesota 45.1381 -93.1714 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Minnesota 45.1381 -93.1714 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Minnesota 45.1381 -93.1714 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Minnesota 45.1381 -93.1714 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Wisconsin 43.4715 -87.9490 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Missouri 37.0019 -93.0843 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Missouri 37.0019 -93.0843 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Illinois 39.0406 -90.1408 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Illinois 39.0406 -90.1408 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Illinois 39.0406 -90.1408 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phoenix, New York 43.2316 -76.2961 matched with DB +City: Phoenix, state: Arizona, Lat: 33.5722, Lng: -112.0892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, California 38.0333 -120.4096 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, California 38.0333 -120.4096 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, California 38.0333 -120.4096 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, California 38.0333 -120.4096 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, California 38.0333 -120.4096 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, California 38.0333 -120.4096 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Texas 31.2000 -97.3019 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Texas 31.2000 -97.3019 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Texas 31.2000 -97.3019 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Texas 31.2000 -97.3019 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Texas 31.2000 -97.3019 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Texas 31.2000 -97.3019 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Grove, Wisconsin 43.5682 -87.8243 matched with DB +City: Cedar Grove, state: New Jersey, Lat: 40.8565, Lng: -74.2288, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bennington, Nebraska 41.3682 -96.1616 matched with DB +City: Bennington, state: Vermont, Lat: 42.8854, Lng: -73.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holyoke, Colorado 40.5820 -102.2975 matched with DB +City: Holyoke, state: Massachusetts, Lat: 42.2125, Lng: -72.6411, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melbourne, Arkansas 36.0638 -91.8820 matched with DB +City: Melbourne, state: Florida, Lat: 28.1086, Lng: -80.6627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Hills, Pennsylvania 40.8262 -79.9152 matched with DB +City: Oak Hills, state: Oregon, Lat: 45.5405, Lng: -122.8413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Alabama 32.0965 -88.2108 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Alabama 32.0965 -88.2108 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Minnesota 44.6083 -94.0768 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Minnesota 44.6083 -94.0768 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Minnesota 44.6083 -94.0768 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Minnesota 44.6083 -94.0768 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Minnesota 44.6083 -94.0768 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Illinois 40.0143 -89.8452 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, Alabama 32.4998 -88.2938 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Alabama 32.4998 -88.2938 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Alabama 32.4998 -88.2938 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Pennsylvania 40.0188 -79.8912 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Pennsylvania 40.0188 -79.8912 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Pennsylvania 40.0188 -79.8912 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngsville, North Carolina 36.0242 -78.4816 matched with DB +City: Youngsville, state: Louisiana, Lat: 30.0963, Lng: -91.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anchorage, Kentucky 38.2689 -85.5364 matched with DB +City: Anchorage, state: Alaska, Lat: 61.1508, Lng: -149.1091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, Alabama 32.7014 -87.5950 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Missouri 37.3212 -91.9610 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Washington 48.0069 -119.6726 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Washington 48.0069 -119.6726 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Illinois 38.7196 -87.8720 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Alabama 33.6171 -86.2042 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Alabama 33.6171 -86.2042 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Alabama 33.6171 -86.2042 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Alabama 33.6171 -86.2042 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Nebraska 41.2138 -98.4596 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, Tennessee 35.7830 -89.1168 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, Tennessee 35.7830 -89.1168 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, New York 41.6965 -73.8989 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, New York 41.6965 -73.8989 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, New York 41.6965 -73.8989 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, New York 41.6965 -73.8989 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, New York 41.6965 -73.8989 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Illinois 39.9618 -89.7217 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Illinois 39.9618 -89.7217 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Illinois 39.9618 -89.7217 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Illinois 39.9618 -89.7217 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Illinois 39.9618 -89.7217 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Utah 37.8683 -109.3380 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Kentucky 36.9824 -82.9920 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Kentucky 36.9824 -82.9920 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Arkansas 35.8203 -90.4547 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Louisiana 32.6907 -93.7401 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Hill, New York 41.6191 -74.5902 matched with DB +City: Rock Hill, state: South Carolina, Lat: 34.9415, Lng: -81.0241, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Arkansas 35.0529 -93.3902 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Arkansas 35.0529 -93.3902 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Arkansas 35.0529 -93.3902 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Arkansas 35.0529 -93.3902 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Arkansas 35.0529 -93.3902 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burnsville, North Carolina 35.9163 -82.2977 matched with DB +City: Burnsville, state: Minnesota, Lat: 44.7648, Lng: -93.2793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheney, Kansas 37.6353 -97.7797 matched with DB +City: Cheney, state: Washington, Lat: 47.4901, Lng: -117.579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesboro, Tennessee 35.3235 -87.7593 matched with DB +City: Waynesboro, state: Pennsylvania, Lat: 39.7524, Lng: -77.5822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waynesboro, Tennessee 35.3235 -87.7593 matched with DB +City: Waynesboro, state: Virginia, Lat: 38.0674, Lng: -78.9014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Park, New York 41.9566 -74.0018 matched with DB +City: Lincoln Park, state: New Jersey, Lat: 40.9239, Lng: -74.3035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln Park, New York 41.9566 -74.0018 matched with DB +City: Lincoln Park, state: Michigan, Lat: 42.2432, Lng: -83.1811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnston, South Carolina 33.8328 -81.8051 matched with DB +City: Johnston, state: Iowa, Lat: 41.691, Lng: -93.7234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnston, South Carolina 33.8328 -81.8051 matched with DB +City: Johnston, state: Rhode Island, Lat: 41.8274, Lng: -71.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Alabama 34.9496 -85.7243 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Alabama 34.9496 -85.7243 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Rock, Pennsylvania 39.7935 -76.7307 matched with DB +City: Glen Rock, state: New Jersey, Lat: 40.9601, Lng: -74.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, Tennessee 36.1807 -83.7933 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, Tennessee 36.1807 -83.7933 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centreville, Mississippi 31.0870 -91.0655 matched with DB +City: Centreville, state: Virginia, Lat: 38.839, Lng: -77.4389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center, Colorado 37.7512 -106.1105 matched with DB +City: Center, state: Pennsylvania, Lat: 40.6483, Lng: -80.2977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carson, Washington 45.7354 -121.8219 matched with DB +City: Carson, state: California, Lat: 33.8374, Lng: -118.2559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Kentucky 36.9893 -85.0662 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Kentucky 36.9893 -85.0662 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Kentucky 37.3654 -84.3401 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Kentucky 37.3654 -84.3401 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Kentucky 37.3654 -84.3401 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Kentucky 37.3654 -84.3401 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Kentucky 37.3654 -84.3401 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hull, Iowa 43.1894 -96.1342 matched with DB +City: Hull, state: Massachusetts, Lat: 42.2861, Lng: -70.8835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Indiana 39.0261 -86.9374 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitney, Texas 31.9520 -97.3192 matched with DB +City: Whitney, state: Nevada, Lat: 36.1008, Lng: -115.0379, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hyde Park, Pennsylvania 40.3755 -75.9240 matched with DB +City: Hyde Park, state: New York, Lat: 41.8011, Lng: -73.906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Virginia 37.9603 -76.7610 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Arkansas 34.7947 -91.7361 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kearny, Arizona 33.0564 -110.9074 matched with DB +City: Kearny, state: New Jersey, Lat: 40.7528, Lng: -74.1202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Missouri 38.2475 -93.3708 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Mississippi 32.4339 -89.1092 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Mississippi 32.4339 -89.1092 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Mississippi 32.4339 -89.1092 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Mississippi 32.4339 -89.1092 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Rafael, New Mexico 35.1010 -107.8899 matched with DB +City: San Rafael, state: California, Lat: 37.9905, Lng: -122.5221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, Illinois 37.4143 -88.8871 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, Illinois 37.4143 -88.8871 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Pennsylvania 40.9459 -76.6461 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Pennsylvania 40.9459 -76.6461 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Pennsylvania 40.9459 -76.6461 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Pennsylvania 40.9459 -76.6461 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, Illinois 41.4118 -88.1345 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Michigan 44.0168 -84.8080 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Michigan 44.0168 -84.8080 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Michigan 44.0168 -84.8080 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Michigan 44.0168 -84.8080 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Michigan 44.0168 -84.8080 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Michigan 44.0168 -84.8080 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abbeville, Alabama 31.5664 -85.2528 matched with DB +City: Abbeville, state: Louisiana, Lat: 29.9751, Lng: -92.1265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Missouri 37.8610 -92.3993 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Missouri 37.8610 -92.3993 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Missouri 37.8610 -92.3993 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Missouri 37.8610 -92.3993 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensburg, Kentucky 37.2599 -85.4962 matched with DB +City: Greensburg, state: Pennsylvania, Lat: 40.3113, Lng: -79.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greensburg, Kentucky 37.2599 -85.4962 matched with DB +City: Greensburg, state: Indiana, Lat: 39.3518, Lng: -85.5028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commerce, Oklahoma 36.9349 -94.8615 matched with DB +City: Commerce, state: California, Lat: 33.9963, Lng: -118.1519, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Commerce, Oklahoma 36.9349 -94.8615 matched with DB +City: Commerce, state: Texas, Lat: 33.2421, Lng: -95.8992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Illinois 40.6877 -89.6731 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Illinois 40.6877 -89.6731 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Illinois 40.6877 -89.6731 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Virginia 37.5816 -79.0509 matched with DB +City: Amherst, state: Ohio, Lat: 41.4022, Lng: -82.2303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Virginia 37.5816 -79.0509 matched with DB +City: Amherst, state: New Hampshire, Lat: 42.8706, Lng: -71.6068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Virginia 37.5816 -79.0509 matched with DB +City: Amherst, state: New York, Lat: 43.0117, Lng: -78.757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Tennessee 36.1600 -88.8036 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Tennessee 36.1600 -88.8036 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Tennessee 36.1600 -88.8036 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anthony, Kansas 37.1588 -98.0418 matched with DB +City: Anthony, state: New Mexico, Lat: 32.0131, Lng: -106.5984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Kentucky 37.5589 -83.3783 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Fulton, Tennessee 36.4931 -88.8835 matched with DB +City: South Fulton, state: Georgia, Lat: 33.6273, Lng: -84.58, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Michigan 42.8195 -84.2320 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Marys, West Virginia 39.4023 -81.1951 matched with DB +City: St. Marys, state: Pennsylvania, Lat: 41.4574, Lng: -78.5342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Marys, West Virginia 39.4023 -81.1951 matched with DB +City: St. Marys, state: Georgia, Lat: 30.7567, Lng: -81.5722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wells, Minnesota 43.7427 -93.7281 matched with DB +City: Wells, state: Maine, Lat: 43.3267, Lng: -70.6336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Georgia 34.8775 -83.4027 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Georgia 34.8775 -83.4027 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Georgia 34.8775 -83.4027 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Georgia 34.8775 -83.4027 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Georgia 34.8775 -83.4027 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunkirk, Maryland 38.7156 -76.6730 matched with DB +City: Dunkirk, state: New York, Lat: 42.4801, Lng: -79.3324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morris, Alabama 33.7464 -86.8042 matched with DB +City: Morris, state: Illinois, Lat: 41.3749, Lng: -88.4304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morris, Alabama 33.7464 -86.8042 matched with DB +City: Morris, state: New Jersey, Lat: 40.7959, Lng: -74.4945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zion, Pennsylvania 40.9167 -77.6908 matched with DB +City: Zion, state: Illinois, Lat: 42.4603, Lng: -87.8511, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, California 40.3017 -121.2339 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, California 40.3017 -121.2339 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Minnesota 45.4654 -94.3218 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, Delaware 39.0293 -75.5202 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, Delaware 39.0293 -75.5202 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Lake, Washington 48.3890 -122.2435 matched with DB +City: Big Lake, state: Minnesota, Lat: 45.3417, Lng: -93.7434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Illinois 42.4639 -88.3093 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Illinois 42.4639 -88.3093 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Illinois 42.4639 -88.3093 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Illinois 42.4639 -88.3093 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Illinois 42.4639 -88.3093 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Kentucky 36.6906 -85.1353 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Kentucky 36.6906 -85.1353 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Kentucky 36.6906 -85.1353 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Kentucky 36.6906 -85.1353 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, Florida 28.2603 -81.4525 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Michigan 42.1483 -84.0346 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Michigan 42.1483 -84.0346 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Michigan 42.1483 -84.0346 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Michigan 42.1483 -84.0346 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Michigan 42.1483 -84.0346 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Michigan 42.1483 -84.0346 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason City, Illinois 40.2022 -89.6974 matched with DB +City: Mason City, state: Iowa, Lat: 43.1487, Lng: -93.1997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Louisiana 30.6361 -90.5056 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Louisiana 30.6361 -90.5056 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Louisiana 30.6361 -90.5056 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Louisiana 30.6361 -90.5056 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Mississippi 32.4303 -88.6460 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Mississippi 32.4303 -88.6460 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Mississippi 32.4303 -88.6460 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Mississippi 32.4303 -88.6460 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Mississippi 32.4303 -88.6460 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Illinois 41.2984 -90.1907 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Illinois 41.2984 -90.1907 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Illinois 41.2984 -90.1907 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Illinois 41.2984 -90.1907 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Georgia 32.1834 -82.5959 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Georgia 32.1834 -82.5959 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Georgia 32.1834 -82.5959 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Georgia 32.1834 -82.5959 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Georgia 32.1834 -82.5959 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temple, Pennsylvania 40.4084 -75.9225 matched with DB +City: Temple, state: Texas, Lat: 31.1068, Lng: -97.3891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, Indiana 39.5461 -86.3703 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, Indiana 39.5461 -86.3703 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Pennsylvania 41.0111 -80.3792 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Texas 30.8503 -93.7536 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Texas 30.8503 -93.7536 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Texas 30.8503 -93.7536 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Texas 30.8503 -93.7536 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewster, Washington 48.1015 -119.7762 matched with DB +City: Brewster, state: Massachusetts, Lat: 41.7463, Lng: -70.0676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kensington, Maryland 39.0269 -77.0736 matched with DB +City: Kensington, state: Connecticut, Lat: 41.6284, Lng: -72.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Indiana 39.2862 -86.7725 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Indiana 39.2862 -86.7725 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Kansas 37.8261 -96.2890 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Kansas 37.8261 -96.2890 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Illinois 39.0566 -88.7477 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Alabama 31.8823 -85.4605 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Alabama 31.8823 -85.4605 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Alabama 31.8823 -85.4605 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Alabama 31.8823 -85.4605 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Alabama 31.8823 -85.4605 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Illinois 40.6054 -88.9891 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Illinois 40.6054 -88.9891 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Illinois 40.6054 -88.9891 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Illinois 40.6054 -88.9891 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Illinois 40.6054 -88.9891 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, Illinois 41.9494 -88.2584 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, Illinois 41.9494 -88.2584 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay City, Oregon 45.5216 -123.8858 matched with DB +City: Bay City, state: Michigan, Lat: 43.5902, Lng: -83.8887, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bay City, Oregon 45.5216 -123.8858 matched with DB +City: Bay City, state: Texas, Lat: 28.9838, Lng: -95.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, California 40.6969 -122.8225 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, California 40.6969 -122.8225 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, California 40.6969 -122.8225 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Dakota 42.8624 -97.8964 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, South Carolina 34.6656 -83.0911 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, South Carolina 34.6656 -83.0911 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, South Carolina 34.6656 -83.0911 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogdensburg, New Jersey 41.0769 -74.5973 matched with DB +City: Ogdensburg, state: New York, Lat: 44.7088, Lng: -75.4717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, West Virginia 37.8509 -81.9857 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, West Virginia 37.8509 -81.9857 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Ohio 39.6599 -83.7424 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Ohio 39.6599 -83.7424 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Oregon 45.2089 -117.8679 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Oregon 45.2089 -117.8679 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Oregon 45.2089 -117.8679 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield, Wisconsin 43.0491 -89.0762 matched with DB +City: Deerfield, state: Illinois, Lat: 42.1654, Lng: -87.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Imperial, Nebraska 40.5145 -101.6374 matched with DB +City: Imperial, state: California, Lat: 32.839, Lng: -115.572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Valley, Pennsylvania 40.9801 -75.4688 matched with DB +City: Sun Valley, state: Nevada, Lat: 39.6104, Lng: -119.777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Pennsylvania 40.3730 -75.2041 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Pennsylvania 40.3730 -75.2041 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Pennsylvania 40.3730 -75.2041 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phillipsburg, Kansas 39.7512 -99.3210 matched with DB +City: Phillipsburg, state: New Jersey, Lat: 40.6894, Lng: -75.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Wisconsin 43.9554 -89.8169 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, California 40.5430 -122.4638 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, California 40.5430 -122.4638 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverdale, Indiana 39.5211 -86.7995 matched with DB +City: Cloverdale, state: California, Lat: 38.7962, Lng: -123.0152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Texas 34.8538 -100.2140 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Texas 34.8538 -100.2140 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Indiana 40.0595 -85.5423 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, North Carolina 35.9175 -81.1754 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Kentucky 37.1464 -83.7635 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kentucky 37.1464 -83.7635 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kentucky 37.1464 -83.7635 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kentucky 37.1464 -83.7635 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kentucky 37.1464 -83.7635 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kentucky 37.1464 -83.7635 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jerome, Illinois 39.7677 -89.6785 matched with DB +City: Jerome, state: Idaho, Lat: 42.7179, Lng: -114.5159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Pennsylvania 40.3243 -79.8590 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Pennsylvania 40.3243 -79.8590 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Georgia 34.8741 -85.5096 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Georgia 34.8741 -85.5096 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Georgia 34.8741 -85.5096 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, Utah 41.9619 -111.8799 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Utah 41.9619 -111.8799 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Utah 41.9619 -111.8799 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, North Carolina 36.3868 -79.9750 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, North Carolina 36.3868 -79.9750 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, North Carolina 36.3868 -79.9750 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, North Carolina 36.3868 -79.9750 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, North Carolina 36.3868 -79.9750 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorktown, Texas 28.9828 -97.5051 matched with DB +City: Yorktown, state: Indiana, Lat: 40.183, Lng: -85.5123, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Yorktown, Texas 28.9828 -97.5051 matched with DB +City: Yorktown, state: New York, Lat: 41.2727, Lng: -73.8092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockport, Indiana 37.8895 -87.0542 matched with DB +City: Rockport, state: Texas, Lat: 28.029, Lng: -97.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Kentucky 38.7774 -84.9040 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Townsend, Montana 46.3192 -111.5197 matched with DB +City: Townsend, state: Massachusetts, Lat: 42.6671, Lng: -71.7115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Missouri 36.8875 -89.9306 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Oregon 45.4258 -117.2789 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Oregon 45.4258 -117.2789 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Indiana 41.7280 -84.9396 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Indiana 41.7280 -84.9396 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Indiana 41.7280 -84.9396 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newtown, Pennsylvania 40.2289 -74.9323 matched with DB +City: Newtown, state: Pennsylvania, Lat: 39.992, Lng: -75.4106, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, Illinois 41.5711 -87.6187 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Colorado 40.0898 -104.6210 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Colorado 40.0898 -104.6210 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Colorado 40.0898 -104.6210 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Colorado 40.0898 -104.6210 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Colorado 40.0898 -104.6210 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Kentucky 37.5853 -84.7903 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winterville, Georgia 33.9666 -83.2815 matched with DB +City: Winterville, state: North Carolina, Lat: 35.5291, Lng: -77.4, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Kentucky 37.3205 -84.9287 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Kentucky 37.3205 -84.9287 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malone, Florida 30.9589 -85.1622 matched with DB +City: Malone, state: New York, Lat: 44.7956, Lng: -74.2859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, North Dakota 46.4385 -97.6841 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, Texas 30.7480 -99.2288 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Everett, Pennsylvania 40.0132 -78.3666 matched with DB +City: Everett, state: Massachusetts, Lat: 42.4064, Lng: -71.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Everett, Pennsylvania 40.0132 -78.3666 matched with DB +City: Everett, state: Washington, Lat: 47.9525, Lng: -122.1669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Ohio 39.2706 -84.4584 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Ohio 39.2706 -84.4584 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Ohio 39.2706 -84.4584 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San José, Puerto Rico 18.4029 -66.2492 matched with DB +City: San Jose, state: California, Lat: 37.3012, Lng: -121.848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Texas 29.2285 -98.6567 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Texas 29.2285 -98.6567 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Texas 29.2285 -98.6567 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Alabama 32.0007 -87.2967 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Alabama 32.0007 -87.2967 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Cleveland, Tennessee 35.1524 -84.8541 matched with DB +City: East Cleveland, state: Ohio, Lat: 41.5317, Lng: -81.5794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Iowa 42.8498 -92.0970 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Olive, Illinois 39.0726 -89.7277 matched with DB +City: Mount Olive, state: New Jersey, Lat: 40.8662, Lng: -74.7426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, New Jersey 40.5224 -74.5765 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, New Jersey 40.5224 -74.5765 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, New Jersey 40.5224 -74.5765 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Washington 48.1781 -117.0546 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Washington 48.1781 -117.0546 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Washington 48.1781 -117.0546 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Indiana 41.4327 -85.0347 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Indiana 41.4327 -85.0347 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, West Virginia 40.6129 -80.5628 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, West Virginia 40.6129 -80.5628 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durant, Mississippi 33.0799 -89.8566 matched with DB +City: Durant, state: Oklahoma, Lat: 33.9949, Lng: -96.3923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Iowa 42.2624 -90.4318 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Iowa 42.2624 -90.4318 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Iowa 42.2624 -90.4318 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Texas 34.7268 -100.5416 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Texas 34.7268 -100.5416 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Indiana 38.4919 -87.2810 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Tennessee 36.4319 -84.9341 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Tennessee 36.4319 -84.9341 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malta, Montana 48.3554 -107.8702 matched with DB +City: Malta, state: New York, Lat: 42.9853, Lng: -73.7879, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Kansas 37.5327 -95.8220 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blacksburg, South Carolina 35.1220 -81.5182 matched with DB +City: Blacksburg, state: Virginia, Lat: 37.23, Lng: -80.4279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caldwell, Ohio 39.7468 -81.5127 matched with DB +City: Caldwell, state: New Jersey, Lat: 40.8389, Lng: -74.2776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Caldwell, Ohio 39.7468 -81.5127 matched with DB +City: Caldwell, state: Idaho, Lat: 43.6453, Lng: -116.6594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Ohio 38.6901 -83.6055 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Ohio 38.6901 -83.6055 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Ohio 38.6901 -83.6055 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Ohio 38.6901 -83.6055 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Ohio 38.6901 -83.6055 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Ohio 38.6901 -83.6055 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Illinois 40.6470 -88.7841 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Illinois 40.6470 -88.7841 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Illinois 40.6470 -88.7841 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Illinois 40.6470 -88.7841 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Illinois 40.6470 -88.7841 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Pennsylvania 40.6674 -80.2411 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Pennsylvania 40.6674 -80.2411 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Pennsylvania 40.6674 -80.2411 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Pennsylvania 40.6674 -80.2411 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collierville, California 38.2141 -121.2675 matched with DB +City: Collierville, state: Tennessee, Lat: 35.047, Lng: -89.6987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Nebraska 41.8283 -97.4568 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Nebraska 41.8283 -97.4568 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Nebraska 41.8283 -97.4568 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Nebraska 41.8283 -97.4568 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Nebraska 41.8283 -97.4568 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Illinois 40.6970 -90.0024 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Illinois 40.6970 -90.0024 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Illinois 40.6970 -90.0024 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Illinois 40.6970 -90.0024 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Illinois 40.6970 -90.0024 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Illinois 40.6970 -90.0024 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Nebraska 40.5308 -97.5974 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Nebraska 40.5308 -97.5974 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Kansas 39.8245 -97.6337 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Kansas 39.8245 -97.6337 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Washington 48.7446 -122.4043 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Washington 48.7446 -122.4043 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewster, Ohio 40.7135 -81.5993 matched with DB +City: Brewster, state: Massachusetts, Lat: 41.7463, Lng: -70.0676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Minnesota 44.2372 -94.9819 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, New York 43.5653 -76.1268 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Audubon, Iowa 41.7180 -94.9284 matched with DB +City: Audubon, state: New Jersey, Lat: 39.8906, Lng: -75.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Audubon, Iowa 41.7180 -94.9284 matched with DB +City: Audubon, state: Pennsylvania, Lat: 40.1304, Lng: -75.428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southport, Indiana 39.6600 -86.1171 matched with DB +City: Southport, state: New York, Lat: 42.04, Lng: -76.8775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andrews, North Carolina 35.1994 -83.8262 matched with DB +City: Andrews, state: Texas, Lat: 32.3207, Lng: -102.552, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willow Grove, Texas 31.5591 -97.2960 matched with DB +City: Willow Grove, state: Pennsylvania, Lat: 40.1469, Lng: -75.1174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Indiana 39.6349 -84.9260 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Indiana 39.6349 -84.9260 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemont, Pennsylvania 40.8121 -77.8160 matched with DB +City: Lemont, state: Illinois, Lat: 41.6695, Lng: -87.9838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal Lake, Connecticut 41.9334 -72.3812 matched with DB +City: Crystal Lake, state: Illinois, Lat: 42.2333, Lng: -88.3351, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Utah 39.3302 -110.9628 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Utah 39.3302 -110.9628 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Utah 39.3302 -110.9628 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Utah 39.3302 -110.9628 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Texas 32.7634 -94.3512 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Texas 32.7634 -94.3512 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Texas 32.7634 -94.3512 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Battle Ground, Indiana 40.5076 -86.8526 matched with DB +City: Battle Ground, state: Washington, Lat: 45.7766, Lng: -122.5413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Alabama 32.3001 -87.7926 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galesburg, Michigan 42.2911 -85.4182 matched with DB +City: Galesburg, state: Illinois, Lat: 40.9506, Lng: -90.3763, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bangor, Michigan 42.3120 -86.1135 matched with DB +City: Bangor, state: Maine, Lat: 44.8323, Lng: -68.7906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamlin, Texas 32.8898 -100.1329 matched with DB +City: Hamlin, state: New York, Lat: 43.3213, Lng: -77.9135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minneapolis, Kansas 39.1243 -97.6997 matched with DB +City: Minneapolis, state: Minnesota, Lat: 44.9635, Lng: -93.2678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Louisiana 29.8389 -91.5522 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Louisiana 29.8389 -91.5522 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakley, Kansas 39.1233 -100.8449 matched with DB +City: Oakley, state: California, Lat: 37.9929, Lng: -121.6952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Plata, New Mexico 36.8952 -108.2003 matched with DB +City: La Plata, state: Maryland, Lat: 38.5352, Lng: -76.97, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Illinois 41.5555 -90.4047 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Illinois 41.5555 -90.4047 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Illinois 41.5555 -90.4047 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Georgia 32.5570 -84.2377 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Georgia 32.5570 -84.2377 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, West Virginia 38.8024 -81.3531 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, West Virginia 38.8024 -81.3531 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayden, Colorado 40.4851 -107.2390 matched with DB +City: Hayden, state: Idaho, Lat: 47.768, Lng: -116.804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, Ohio 39.8064 -82.0758 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Ohio 39.8064 -82.0758 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Ohio 39.8064 -82.0758 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, Delaware 38.5356 -75.1284 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Wisconsin 42.8790 -88.4697 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toledo, Iowa 41.9902 -92.5803 matched with DB +City: Toledo, state: Ohio, Lat: 41.6638, Lng: -83.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Kansas 39.8380 -96.0696 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crossville, Alabama 34.2852 -85.9996 matched with DB +City: Crossville, state: Tennessee, Lat: 35.9526, Lng: -85.0295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Oklahoma 35.0179 -97.3348 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oklahoma 35.0179 -97.3348 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oklahoma 35.0179 -97.3348 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oklahoma 35.0179 -97.3348 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oklahoma 35.0179 -97.3348 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Alabama 34.2664 -85.8679 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, South Carolina 32.9594 -81.2363 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Pennsylvania 41.2271 -75.8722 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Pennsylvania 41.2271 -75.8722 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Pennsylvania 41.2271 -75.8722 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Georgia 33.6277 -83.8721 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Georgia 33.6277 -83.8721 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Georgia 33.6277 -83.8721 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Georgia 33.6277 -83.8721 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Georgia 33.6277 -83.8721 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Illinois 38.7096 -87.7590 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Illinois 38.7096 -87.7590 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Itasca, Texas 32.1586 -97.1478 matched with DB +City: Itasca, state: Illinois, Lat: 41.9772, Lng: -88.0183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Ohio 40.2335 -82.4410 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, Missouri 38.3944 -94.3435 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Michigan 43.2988 -84.1476 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Michigan 43.2988 -84.1476 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raceland, Kentucky 38.5376 -82.7344 matched with DB +City: Raceland, state: Louisiana, Lat: 29.7282, Lng: -90.6362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hammond, Wisconsin 44.9690 -92.4381 matched with DB +City: Hammond, state: Indiana, Lat: 41.6168, Lng: -87.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hammond, Wisconsin 44.9690 -92.4381 matched with DB +City: Hammond, state: Louisiana, Lat: 30.5061, Lng: -90.4563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Texas 30.1961 -97.5514 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaver Dam, Arizona 36.9070 -113.9362 matched with DB +City: Beaver Dam, state: Wisconsin, Lat: 43.4688, Lng: -88.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemount, Ohio 38.7812 -82.9664 matched with DB +City: Rosemount, state: Minnesota, Lat: 44.7466, Lng: -93.0661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke, Illinois 40.7968 -89.2023 matched with DB +City: Roanoke, state: Virginia, Lat: 37.2785, Lng: -79.9581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roanoke, Illinois 40.7968 -89.2023 matched with DB +City: Roanoke, state: Texas, Lat: 33.0144, Lng: -97.2276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, South Carolina 35.0119 -80.9828 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, South Carolina 35.0119 -80.9828 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Louisiana 30.4953 -90.7467 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Louisiana 30.4953 -90.7467 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tracy, Minnesota 44.2390 -95.6153 matched with DB +City: Tracy, state: California, Lat: 37.7269, Lng: -121.4523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Missouri 36.8446 -94.6093 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amelia, Louisiana 29.6645 -91.1072 matched with DB +City: Amelia, state: Ohio, Lat: 39.0269, Lng: -84.2218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilsonville, Alabama 33.2346 -86.4884 matched with DB +City: Wilsonville, state: Oregon, Lat: 45.3109, Lng: -122.7702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlotte, Tennessee 36.1861 -87.3389 matched with DB +City: Charlotte, state: Michigan, Lat: 42.5662, Lng: -84.8304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charlotte, Tennessee 36.1861 -87.3389 matched with DB +City: Charlotte, state: North Carolina, Lat: 35.2083, Lng: -80.8303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose Park, New York 42.9085 -76.5263 matched with DB +City: Melrose Park, state: Illinois, Lat: 41.903, Lng: -87.8636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dudley, North Carolina 35.2661 -78.0382 matched with DB +City: Dudley, state: Massachusetts, Lat: 42.055, Lng: -71.9352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Illinois 40.2638 -89.2309 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallsburg, New York 41.7343 -74.6112 matched with DB +City: Fallsburg, state: New York, Lat: 41.7391, Lng: -74.6038, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Maryland 39.4165 -79.4022 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Maryland 39.4165 -79.4022 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Maryland 39.4165 -79.4022 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Arkansas 35.2865 -91.3614 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Arkansas 35.2865 -91.3614 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Arkansas 35.2865 -91.3614 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinehurst, Idaho 47.5364 -116.2327 matched with DB +City: Pinehurst, state: North Carolina, Lat: 35.1922, Lng: -79.4684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manhattan, Montana 45.8622 -111.3344 matched with DB +City: Manhattan, state: Kansas, Lat: 39.1886, Lng: -96.6048, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, Montana 45.8622 -111.3344 matched with DB +City: Manhattan, state: Illinois, Lat: 41.4274, Lng: -87.9805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manhattan, Montana 45.8622 -111.3344 matched with DB +City: Manhattan, state: New York, Lat: 40.7834, Lng: -73.9662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Tennessee 36.4818 -87.8438 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Tennessee 36.4818 -87.8438 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Tennessee 36.4818 -87.8438 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Tennessee 36.4818 -87.8438 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Tennessee 36.4818 -87.8438 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Antonio, Puerto Rico 18.4391 -66.9321 matched with DB +City: San Antonio, state: Texas, Lat: 29.4632, Lng: -98.5238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Texas 32.2685 -97.1775 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Texas 32.2685 -97.1775 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Ohio 39.6372 -84.6446 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Ohio 39.6372 -84.6446 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Missouri 38.5897 -90.5260 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Missouri 38.5897 -90.5260 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Missouri 38.5897 -90.5260 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Missouri 38.5897 -90.5260 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Missouri 38.5897 -90.5260 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Mississippi 32.2610 -90.4090 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logansport, Louisiana 31.9763 -93.9933 matched with DB +City: Logansport, state: Indiana, Lat: 40.7472, Lng: -86.352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sylvania, Alabama 34.5616 -85.8056 matched with DB +City: Sylvania, state: Ohio, Lat: 41.71, Lng: -83.7092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Indiana 40.1032 -85.7375 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Indiana 40.1032 -85.7375 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin Park, Florida 26.1327 -80.1763 matched with DB +City: Franklin Park, state: Pennsylvania, Lat: 40.5903, Lng: -80.0999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, Florida 26.1327 -80.1763 matched with DB +City: Franklin Park, state: Illinois, Lat: 41.9361, Lng: -87.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin Park, Florida 26.1327 -80.1763 matched with DB +City: Franklin Park, state: New Jersey, Lat: 40.4439, Lng: -74.5431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngstown, New York 43.2488 -79.0443 matched with DB +City: Youngstown, state: Ohio, Lat: 41.0993, Lng: -80.6463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Michigan 43.1765 -83.8932 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Kentucky 36.8134 -87.1610 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granger, Iowa 41.7617 -93.8236 matched with DB +City: Granger, state: Indiana, Lat: 41.7374, Lng: -86.1348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynchburg, Mississippi 34.9623 -90.1052 matched with DB +City: Lynchburg, state: Virginia, Lat: 37.4003, Lng: -79.1909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Virginia 36.9947 -78.2242 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Virginia 36.9947 -78.2242 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Georgia 32.7647 -84.8753 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Georgia 32.7647 -84.8753 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Georgia 32.7647 -84.8753 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Georgia 32.7647 -84.8753 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Georgia 33.2766 -82.9704 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Georgia 33.2766 -82.9704 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central, Tennessee 36.3289 -82.2940 matched with DB +City: Central, state: Louisiana, Lat: 30.5593, Lng: -91.0369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Tennessee 36.3420 -89.1583 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Tennessee 36.3420 -89.1583 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Tennessee 36.3420 -89.1583 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Tennessee 36.3420 -89.1583 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Tennessee 36.3420 -89.1583 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Tennessee 36.3420 -89.1583 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewistown, Illinois 40.3969 -90.1554 matched with DB +City: Lewistown, state: Pennsylvania, Lat: 40.5964, Lng: -77.573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Wisconsin 42.5574 -88.8680 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parma, Idaho 43.7864 -116.9429 matched with DB +City: Parma, state: Ohio, Lat: 41.3843, Lng: -81.7286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parma, Idaho 43.7864 -116.9429 matched with DB +City: Parma, state: New York, Lat: 43.2651, Lng: -77.7968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Colorado 40.2230 -105.2692 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kentwood, Louisiana 30.9339 -90.5153 matched with DB +City: Kentwood, state: Michigan, Lat: 42.8852, Lng: -85.5926, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hagerstown, Indiana 39.9115 -85.1555 matched with DB +City: Hagerstown, state: Maryland, Lat: 39.6401, Lng: -77.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Missouri 37.1473 -92.7689 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Missouri 37.1473 -92.7689 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Matthews, South Carolina 33.6640 -80.7780 matched with DB +City: St. Matthews, state: Kentucky, Lat: 38.2497, Lng: -85.6384, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Montana 45.6360 -109.2488 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Montana 45.6360 -109.2488 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Montana 45.6360 -109.2488 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Montana 45.6360 -109.2488 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Montana 45.6360 -109.2488 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Missouri 37.6970 -93.7960 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, Nebraska 41.9427 -103.8098 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, New York 43.0489 -75.3784 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malvern, Alabama 31.1428 -85.5210 matched with DB +City: Malvern, state: Arkansas, Lat: 34.3734, Lng: -92.8205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denver, Iowa 42.6683 -92.3350 matched with DB +City: Denver, state: Colorado, Lat: 39.762, Lng: -104.8758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Michigan 43.6021 -84.0756 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Mississippi 31.7922 -89.0983 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Mississippi 31.7922 -89.0983 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsbury, Nevada 38.9909 -119.8837 matched with DB +City: Kingsbury, state: New York, Lat: 43.344, Lng: -73.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halls, Tennessee 35.8795 -89.4050 matched with DB +City: Halls, state: Tennessee, Lat: 36.0817, Lng: -83.9344, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melville, Rhode Island 41.5611 -71.2937 matched with DB +City: Melville, state: New York, Lat: 40.7824, Lng: -73.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sussex, New Jersey 41.2096 -74.6079 matched with DB +City: Sussex, state: Wisconsin, Lat: 43.1346, Lng: -88.2226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsport, Maryland 39.5973 -77.8180 matched with DB +City: Williamsport, state: Pennsylvania, Lat: 41.2399, Lng: -77.037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, Mississippi 31.8322 -89.4342 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Virginia 38.4173 -78.9412 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Virginia 38.4173 -78.9412 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Virginia 38.4173 -78.9412 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, Oklahoma 36.5321 -95.4346 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, Oklahoma 36.5321 -95.4346 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Wisconsin 43.1084 -88.0713 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Wisconsin 43.1084 -88.0713 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly Hills, Texas 31.5224 -97.1564 matched with DB +City: Beverly Hills, state: Michigan, Lat: 42.522, Lng: -83.2423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Texas 31.5224 -97.1564 matched with DB +City: Beverly Hills, state: Florida, Lat: 28.9176, Lng: -82.4542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Texas 31.5224 -97.1564 matched with DB +City: Beverly Hills, state: California, Lat: 34.0786, Lng: -118.4021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Nebraska 40.0217 -98.0618 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Nebraska 40.0217 -98.0618 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Georgia 31.2603 -81.5525 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Georgia 31.2603 -81.5525 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Georgia 31.2603 -81.5525 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durant, Iowa 41.6011 -90.9138 matched with DB +City: Durant, state: Oklahoma, Lat: 33.9949, Lng: -96.3923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, North Carolina 35.7104 -81.1532 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, North Carolina 35.7104 -81.1532 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, Indiana 39.2992 -85.7660 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. George, South Carolina 33.1861 -80.5794 matched with DB +City: St. George, state: Utah, Lat: 37.0758, Lng: -113.5752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olathe, Colorado 38.6083 -107.9833 matched with DB +City: Olathe, state: Kansas, Lat: 38.8833, Lng: -94.82, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stone Ridge, New York 41.8436 -74.1518 matched with DB +City: Stone Ridge, state: Virginia, Lat: 38.9294, Lng: -77.5557, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Park, Wyoming 43.4234 -110.7994 matched with DB +City: South Park, state: Pennsylvania, Lat: 40.2988, Lng: -79.9944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Texas 32.8222 -97.4867 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Texas 32.8222 -97.4867 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Texas 32.8222 -97.4867 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Tennessee 36.4112 -84.5056 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Tennessee 36.4112 -84.5056 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Iowa 41.5189 -93.1038 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainville, Kansas 39.2341 -99.3009 matched with DB +City: Plainville, state: Massachusetts, Lat: 42.0141, Lng: -71.3364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Delaware 39.1147 -75.5630 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Delaware 39.1147 -75.5630 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Michigan 42.1075 -85.9746 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Michigan 42.1075 -85.9746 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Michigan 42.1075 -85.9746 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Michigan 42.1075 -85.9746 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watervliet, Michigan 42.1883 -86.2576 matched with DB +City: Watervliet, state: New York, Lat: 42.7243, Lng: -73.7068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, South Carolina 33.3283 -81.7925 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Missouri 39.7433 -94.0027 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Missouri 39.7433 -94.0027 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Missouri 39.7433 -94.0027 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Missouri 39.7433 -94.0027 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tecumseh, Nebraska 40.3718 -96.1888 matched with DB +City: Tecumseh, state: Michigan, Lat: 42.0066, Lng: -83.945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogden, Iowa 42.0395 -94.0282 matched with DB +City: Ogden, state: North Carolina, Lat: 34.2656, Lng: -77.7966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Iowa 42.0395 -94.0282 matched with DB +City: Ogden, state: Utah, Lat: 41.2279, Lng: -111.9682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Iowa 42.0395 -94.0282 matched with DB +City: Ogden, state: New York, Lat: 43.1646, Lng: -77.822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincolnton, Georgia 33.7931 -82.4776 matched with DB +City: Lincolnton, state: North Carolina, Lat: 35.4748, Lng: -81.2386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, Nebraska 40.6635 -96.1827 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, Nebraska 40.6635 -96.1827 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palm Valley, Texas 26.2015 -97.7546 matched with DB +City: Palm Valley, state: Florida, Lat: 30.2011, Lng: -81.3948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stony Point, Michigan 41.9451 -83.2751 matched with DB +City: Stony Point, state: New York, Lat: 41.2593, Lng: -74.0112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. George, Missouri 38.5376 -90.3121 matched with DB +City: St. George, state: Utah, Lat: 37.0758, Lng: -113.5752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Iowa 41.9205 -91.3916 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, West Virginia 39.2849 -80.5645 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, West Virginia 39.2849 -80.5645 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, West Virginia 39.2849 -80.5645 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, West Virginia 39.2849 -80.5645 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, West Virginia 39.2849 -80.5645 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, West Virginia 39.2849 -80.5645 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, North Carolina 36.4209 -81.4686 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, North Carolina 36.4209 -81.4686 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, North Carolina 36.4209 -81.4686 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, Mississippi 33.8525 -91.0339 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, Mississippi 33.8525 -91.0339 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawton, Michigan 42.1678 -85.8461 matched with DB +City: Lawton, state: Oklahoma, Lat: 34.6175, Lng: -98.4202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Navarre, Ohio 40.7261 -81.5145 matched with DB +City: Navarre, state: Florida, Lat: 30.4174, Lng: -86.8907, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arnold, California 38.2465 -120.3479 matched with DB +City: Arnold, state: Maryland, Lat: 39.0437, Lng: -76.4974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arnold, California 38.2465 -120.3479 matched with DB +City: Arnold, state: Missouri, Lat: 38.4297, Lng: -90.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Indiana 41.7184 -85.8228 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Indiana 41.7184 -85.8228 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Indiana 41.7184 -85.8228 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Indiana 41.7184 -85.8228 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Indiana 41.7184 -85.8228 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Missouri 40.4613 -92.1704 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Missouri 40.4613 -92.1704 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsburg, Ohio 40.0735 -83.5564 matched with DB +City: Mechanicsburg, state: Pennsylvania, Lat: 40.2115, Lng: -77.006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durham, Oregon 45.3941 -122.7580 matched with DB +City: Durham, state: North Carolina, Lat: 35.9792, Lng: -78.9022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Durham, Oregon 45.3941 -122.7580 matched with DB +City: Durham, state: New Hampshire, Lat: 43.1174, Lng: -70.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Bend, Washington 46.6678 -123.8006 matched with DB +City: South Bend, state: Indiana, Lat: 41.6767, Lng: -86.2696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Missouri 40.2479 -94.3335 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Missouri 40.2479 -94.3335 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Missouri 40.2479 -94.3335 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Missouri 40.2479 -94.3335 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westlake, Florida 26.7549 -80.2984 matched with DB +City: Westlake, state: Ohio, Lat: 41.4524, Lng: -81.9294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annandale, New Jersey 40.6468 -74.8881 matched with DB +City: Annandale, state: Virginia, Lat: 38.8324, Lng: -77.196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke, Indiana 40.9640 -85.3761 matched with DB +City: Roanoke, state: Virginia, Lat: 37.2785, Lng: -79.9581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roanoke, Indiana 40.9640 -85.3761 matched with DB +City: Roanoke, state: Texas, Lat: 33.0144, Lng: -97.2276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, Washington 47.6550 -118.1519 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, Washington 47.6550 -118.1519 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenton, Georgia 33.4067 -82.6653 matched with DB +City: Warrenton, state: Virginia, Lat: 38.7176, Lng: -77.7976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrenton, Georgia 33.4067 -82.6653 matched with DB +City: Warrenton, state: Missouri, Lat: 38.8187, Lng: -91.1385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsport, Indiana 40.2884 -87.2922 matched with DB +City: Williamsport, state: Pennsylvania, Lat: 41.2399, Lng: -77.037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, California 38.0186 -121.0994 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Florida 29.6092 -82.8147 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Florida 29.6092 -82.8147 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Florida 29.6092 -82.8147 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisburg, Ohio 39.8508 -84.5434 matched with DB +City: Lewisburg, state: Tennessee, Lat: 35.451, Lng: -86.7901, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Tennessee 35.5290 -84.7933 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Tennessee 35.5290 -84.7933 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Tennessee 35.5290 -84.7933 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Tennessee 35.5290 -84.7933 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holden, Missouri 38.7136 -93.9895 matched with DB +City: Holden, state: Massachusetts, Lat: 42.3561, Lng: -71.8608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasantville, Iowa 41.3868 -93.2731 matched with DB +City: Pleasantville, state: New Jersey, Lat: 39.39, Lng: -74.5169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Texas 31.4600 -96.0660 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Texas 31.4600 -96.0660 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Pennsylvania 41.3417 -75.5316 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Oregon 43.5795 -124.1733 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Oregon 43.5795 -124.1733 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Oregon 43.5795 -124.1733 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Kansas 38.3547 -97.0082 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kansas 38.3547 -97.0082 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kansas 38.3547 -97.0082 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kansas 38.3547 -97.0082 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Kansas 38.3547 -97.0082 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mayfield, Pennsylvania 41.5394 -75.5315 matched with DB +City: Mayfield, state: Kentucky, Lat: 36.7371, Lng: -88.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, New York 41.6571 -73.9661 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, New York 41.6571 -73.9661 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, New York 41.6571 -73.9661 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, New York 41.6571 -73.9661 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, New York 41.6571 -73.9661 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, New York 41.6571 -73.9661 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, Kentucky 37.9660 -83.8319 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Oregon 44.3922 -122.9834 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Oregon 44.3922 -122.9834 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Oregon 44.3922 -122.9834 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, Washington 46.3558 -124.0556 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Washington 46.3558 -124.0556 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Washington 46.3558 -124.0556 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Colorado 39.3589 -104.6196 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Kansas 39.0394 -94.6156 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Kansas 39.0394 -94.6156 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Kansas 39.0394 -94.6156 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ada, Minnesota 47.2989 -96.5165 matched with DB +City: Ada, state: Oklahoma, Lat: 34.7662, Lng: -96.6681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, Utah 41.6850 -111.8211 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Michigan 42.0662 -85.1432 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Michigan 42.0662 -85.1432 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Michigan 42.0662 -85.1432 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Michigan 42.0662 -85.1432 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopewell, New Jersey 40.3893 -74.7638 matched with DB +City: Hopewell, state: Virginia, Lat: 37.2915, Lng: -77.2985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hopewell, New Jersey 40.3893 -74.7638 matched with DB +City: Hopewell, state: Pennsylvania, Lat: 40.5906, Lng: -80.2731, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grove City, Florida 26.9071 -82.3259 matched with DB +City: Grove City, state: Ohio, Lat: 39.8654, Lng: -83.069, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Texas 31.2163 -99.8440 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, Minnesota 47.4912 -92.4612 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Pennsylvania 40.6059 -77.7211 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Pennsylvania 40.6059 -77.7211 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jonesboro, Illinois 37.4510 -89.2666 matched with DB +City: Jonesboro, state: Arkansas, Lat: 35.8212, Lng: -90.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allentown, New Jersey 40.1778 -74.5873 matched with DB +City: Allentown, state: Pennsylvania, Lat: 40.5961, Lng: -75.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Michigan 42.7945 -85.5153 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, South Dakota 45.3366 -97.5219 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, South Dakota 45.3366 -97.5219 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, South Dakota 45.3366 -97.5219 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Minnesota 45.0650 -93.9670 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Minnesota 45.0650 -93.9670 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, Texas 29.9414 -99.0413 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Alabama 33.7588 -88.1143 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Alabama 33.7588 -88.1143 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Wisconsin 45.4059 -91.7422 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Arkansas 35.3910 -93.1143 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Arkansas 35.3910 -93.1143 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Arkansas 35.3910 -93.1143 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Arkansas 35.3910 -93.1143 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Arkansas 35.3910 -93.1143 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Florida 30.3052 -81.9744 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Florida 30.3052 -81.9744 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pineville, Kentucky 36.7532 -83.7076 matched with DB +City: Pineville, state: Louisiana, Lat: 31.3414, Lng: -92.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pineville, Kentucky 36.7532 -83.7076 matched with DB +City: Pineville, state: North Carolina, Lat: 35.0864, Lng: -80.8915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, North Carolina 36.5034 -81.1217 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, North Carolina 36.5034 -81.1217 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Park, Pennsylvania 40.3147 -75.9886 matched with DB +City: Lincoln Park, state: New Jersey, Lat: 40.9239, Lng: -74.3035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln Park, Pennsylvania 40.3147 -75.9886 matched with DB +City: Lincoln Park, state: Michigan, Lat: 42.2432, Lng: -83.1811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunkirk, Indiana 40.3741 -85.2076 matched with DB +City: Dunkirk, state: New York, Lat: 42.4801, Lng: -79.3324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fox Lake, Wisconsin 43.5619 -88.9130 matched with DB +City: Fox Lake, state: Illinois, Lat: 42.4239, Lng: -88.1844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Charleston, Ohio 39.8243 -83.6417 matched with DB +City: South Charleston, state: West Virginia, Lat: 38.3426, Lng: -81.7155, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oswego, Kansas 37.1674 -95.1123 matched with DB +City: Oswego, state: New York, Lat: 43.4516, Lng: -76.5005, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oswego, Kansas 37.1674 -95.1123 matched with DB +City: Oswego, state: Illinois, Lat: 41.6834, Lng: -88.3372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Pennsylvania 41.6566 -76.8529 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Pennsylvania 41.6566 -76.8529 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Pennsylvania 41.6566 -76.8529 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Pennsylvania 41.6566 -76.8529 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Pennsylvania 41.6566 -76.8529 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Pennsylvania 41.6566 -76.8529 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Montana 48.8790 -115.0492 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Montana 48.8790 -115.0492 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Ohio 40.9965 -82.6672 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Ohio 40.9965 -82.6672 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Ohio 40.9965 -82.6672 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Ohio 40.9965 -82.6672 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Ohio 40.9965 -82.6672 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Ohio 40.9965 -82.6672 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Antonio, Puerto Rico 18.4932 -67.0997 matched with DB +City: San Antonio, state: Texas, Lat: 29.4632, Lng: -98.5238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Utah 38.3945 -113.0123 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Utah 38.3945 -113.0123 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Utah 38.3945 -113.0123 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Utah 38.3945 -113.0123 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: London, California 36.4805 -119.4450 matched with DB +City: London, state: Ohio, Lat: 39.8935, Lng: -83.4375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Mississippi 32.4912 -88.8452 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsville, Maryland 38.4355 -76.7424 matched with DB +City: Mechanicsville, state: Virginia, Lat: 37.6263, Lng: -77.3561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Iowa 41.3057 -94.4593 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Iowa 41.3057 -94.4593 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Iowa 41.3057 -94.4593 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windham, Ohio 41.2375 -81.0373 matched with DB +City: Windham, state: New Hampshire, Lat: 42.8076, Lng: -71.2995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windham, Ohio 41.2375 -81.0373 matched with DB +City: Windham, state: Maine, Lat: 43.7981, Lng: -70.4056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, North Carolina 35.3771 -80.4503 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, North Carolina 35.3771 -80.4503 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, North Carolina 35.3771 -80.4503 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, North Carolina 35.3771 -80.4503 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, North Carolina 35.3771 -80.4503 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, North Carolina 35.3771 -80.4503 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, California 35.3469 -118.9339 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Minnesota 47.5312 -92.2400 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Minnesota 47.5312 -92.2400 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Minnesota 47.5312 -92.2400 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Minnesota 47.5312 -92.2400 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia City, Oregon 45.8950 -122.8116 matched with DB +City: Columbia City, state: Indiana, Lat: 41.1612, Lng: -85.4855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, Minnesota 43.9824 -91.8694 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Minnesota 43.9824 -91.8694 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Minnesota 43.9824 -91.8694 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Celina, Tennessee 36.5469 -85.5043 matched with DB +City: Celina, state: Ohio, Lat: 40.555, Lng: -84.5626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Celina, Tennessee 36.5469 -85.5043 matched with DB +City: Celina, state: Texas, Lat: 33.3154, Lng: -96.7941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvey, North Dakota 47.7766 -99.9301 matched with DB +City: Harvey, state: Illinois, Lat: 41.6076, Lng: -87.652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harvey, North Dakota 47.7766 -99.9301 matched with DB +City: Harvey, state: Louisiana, Lat: 29.8876, Lng: -90.0666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amity, Oregon 45.1153 -123.2033 matched with DB +City: Amity, state: Pennsylvania, Lat: 40.2905, Lng: -75.7477, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Indiana 41.4143 -85.8446 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Indiana 41.4143 -85.8446 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Indiana 41.4143 -85.8446 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Indiana 41.4143 -85.8446 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Venice, Illinois 38.6719 -90.1690 matched with DB +City: Venice, state: Florida, Lat: 27.1184, Lng: -82.4137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Collinsville, Texas 33.5594 -96.9070 matched with DB +City: Collinsville, state: Illinois, Lat: 38.677, Lng: -90.0063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, Maryland 38.4568 -76.4737 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Maryland 38.4568 -76.4737 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Maryland 38.4568 -76.4737 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Folsom, New Jersey 39.5929 -74.8424 matched with DB +City: Folsom, state: California, Lat: 38.6668, Lng: -121.1422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Folsom, New Jersey 39.5929 -74.8424 matched with DB +City: Folsom, state: Pennsylvania, Lat: 39.8924, Lng: -75.3287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, West Virginia 38.9876 -81.9656 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, West Virginia 38.9876 -81.9656 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, Indiana 41.4418 -87.1167 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Indiana 41.4418 -87.1167 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Indiana 41.4418 -87.1167 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Indiana 41.4418 -87.1167 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Indiana 41.4418 -87.1167 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnson City, Texas 30.2743 -98.4065 matched with DB +City: Johnson City, state: New York, Lat: 42.123, Lng: -75.9624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnson City, Texas 30.2743 -98.4065 matched with DB +City: Johnson City, state: Tennessee, Lat: 36.3406, Lng: -82.3806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rose Hill, North Carolina 34.8261 -78.0259 matched with DB +City: Rose Hill, state: Virginia, Lat: 38.7872, Lng: -77.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Alabama 32.4490 -87.4958 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oroville, Washington 48.9419 -119.4305 matched with DB +City: Oroville, state: California, Lat: 39.4999, Lng: -121.5634, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allendale, California 38.4427 -121.9815 matched with DB +City: Allendale, state: Michigan, Lat: 42.9845, Lng: -85.9499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Mississippi 33.9508 -90.7653 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyndhurst, Virginia 38.0220 -78.9516 matched with DB +City: Lyndhurst, state: Ohio, Lat: 41.5172, Lng: -81.4922, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lyndhurst, Virginia 38.0220 -78.9516 matched with DB +City: Lyndhurst, state: New Jersey, Lat: 40.7965, Lng: -74.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossville, Indiana 40.4196 -86.5958 matched with DB +City: Rossville, state: Maryland, Lat: 39.3572, Lng: -76.4767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Kentucky 38.1562 -84.6760 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, California 38.7518 -122.6221 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Missouri 39.4364 -92.5437 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Missouri 39.4364 -92.5437 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, New York 42.9306 -75.3802 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gallatin, Missouri 39.9106 -93.9642 matched with DB +City: Gallatin, state: Tennessee, Lat: 36.3782, Lng: -86.4698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, Tennessee 35.1865 -85.3303 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, Tennessee 35.1865 -85.3303 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Iowa 42.2677 -94.7311 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, New York 42.7056 -74.0340 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakley, Utah 40.7257 -111.2788 matched with DB +City: Oakley, state: California, Lat: 37.9929, Lng: -121.6952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clara, New Mexico 32.7801 -108.1493 matched with DB +City: Santa Clara, state: California, Lat: 37.3646, Lng: -121.968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Clara, New Mexico 32.7801 -108.1493 matched with DB +City: Santa Clara, state: Oregon, Lat: 44.1154, Lng: -123.1344, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Missouri 39.4032 -94.8862 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Missouri 39.4032 -94.8862 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Missouri 39.4032 -94.8862 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Arkansas 34.3278 -93.5308 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopkins, South Carolina 33.8983 -80.8599 matched with DB +City: Hopkins, state: Minnesota, Lat: 44.9259, Lng: -93.4056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkersburg, Iowa 42.5739 -92.7785 matched with DB +City: Parkersburg, state: West Virginia, Lat: 39.2623, Lng: -81.542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlantic Beach, North Carolina 34.7011 -76.7403 matched with DB +City: Atlantic Beach, state: Florida, Lat: 30.3375, Lng: -81.4127, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearwater, Minnesota 45.4102 -94.0447 matched with DB +City: Clearwater, state: Florida, Lat: 27.979, Lng: -82.7623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Valley, Arizona 35.3228 -111.7399 matched with DB +City: Fort Valley, state: Georgia, Lat: 32.552, Lng: -83.8817, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cranford, New Jersey 40.6548 -74.3053 matched with DB +City: Cranford, state: New Jersey, Lat: 40.6564, Lng: -74.3036, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stuart, Iowa 41.5004 -94.3182 matched with DB +City: Stuart, state: Florida, Lat: 27.1959, Lng: -80.2444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Oklahoma 34.0004 -96.7062 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Oklahoma 34.0004 -96.7062 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Oklahoma 34.0004 -96.7062 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Liberty, Indiana 41.5324 -86.4280 matched with DB +City: North Liberty, state: Iowa, Lat: 41.7438, Lng: -91.6112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Pennsylvania 40.6829 -79.6837 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Pennsylvania 40.6829 -79.6837 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Pennsylvania 40.6829 -79.6837 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Pennsylvania 40.6829 -79.6837 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duluth, Washington 45.7838 -122.6470 matched with DB +City: Duluth, state: Minnesota, Lat: 46.7756, Lng: -92.1393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Duluth, Washington 45.7838 -122.6470 matched with DB +City: Duluth, state: Georgia, Lat: 34.0053, Lng: -84.1492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Texas 32.6943 -95.8833 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Texas 32.6943 -95.8833 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasanton, Kansas 38.1790 -94.7053 matched with DB +City: Pleasanton, state: California, Lat: 37.6663, Lng: -121.8805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasanton, Kansas 38.1790 -94.7053 matched with DB +City: Pleasanton, state: Texas, Lat: 28.9642, Lng: -98.4957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Missouri 38.9928 -90.7456 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Missouri 38.9928 -90.7456 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Kentucky 38.5509 -82.7348 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Kentucky 38.5509 -82.7348 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Pennsylvania 40.3574 -76.2569 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Pennsylvania 40.3574 -76.2569 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Pennsylvania 40.3574 -76.2569 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Pennsylvania 40.3574 -76.2569 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, Kentucky 38.0368 -85.3333 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga, Wyoming 41.4517 -106.8107 matched with DB +City: Saratoga, state: California, Lat: 37.2684, Lng: -122.0263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Missouri 38.5630 -94.1959 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Missouri 38.5630 -94.1959 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Missouri 38.5630 -94.1959 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Missouri 38.5630 -94.1959 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Missouri 38.5630 -94.1959 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Missouri 38.5630 -94.1959 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Indiana 39.1185 -86.9798 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Indiana 39.1185 -86.9798 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delavan, Illinois 40.3710 -89.5461 matched with DB +City: Delavan, state: Wisconsin, Lat: 42.6282, Lng: -88.6323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bessemer, Michigan 46.4775 -90.0498 matched with DB +City: Bessemer, state: Alabama, Lat: 33.3712, Lng: -86.9728, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fall River, Wisconsin 43.3856 -89.0455 matched with DB +City: Fall River, state: Massachusetts, Lat: 41.7136, Lng: -71.1015, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Texas 33.0110 -94.3626 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, West Virginia 38.1750 -81.3245 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, West Virginia 38.1750 -81.3245 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, West Virginia 38.1750 -81.3245 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, West Virginia 38.1750 -81.3245 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, West Virginia 38.1750 -81.3245 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, West Virginia 38.1750 -81.3245 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Ohio 40.7995 -81.7033 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murfreesboro, Arkansas 34.0543 -93.6834 matched with DB +City: Murfreesboro, state: Tennessee, Lat: 35.849, Lng: -86.4121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erie, Illinois 41.6589 -90.0813 matched with DB +City: Erie, state: Pennsylvania, Lat: 42.1167, Lng: -80.0733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Erie, Illinois 41.6589 -90.0813 matched with DB +City: Erie, state: Colorado, Lat: 40.0404, Lng: -105.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Georgia 32.3945 -83.1551 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Georgia 32.3945 -83.1551 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Alabama 33.4674 -87.0392 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Alabama 33.4674 -87.0392 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Alabama 33.4674 -87.0392 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Alabama 33.4674 -87.0392 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Alabama 33.4674 -87.0392 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Alabama 33.4674 -87.0392 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillcrest, Illinois 41.9669 -89.0626 matched with DB +City: Hillcrest, state: California, Lat: 35.379, Lng: -118.9578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sturgis, Kentucky 37.5466 -87.9879 matched with DB +City: Sturgis, state: Michigan, Lat: 41.7991, Lng: -85.4184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Indiana 41.5409 -84.9204 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Indiana 41.5409 -84.9204 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Indiana 41.5409 -84.9204 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Indiana 41.5409 -84.9204 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, Texas 31.9262 -97.6501 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, Texas 31.9262 -97.6501 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groton, South Dakota 45.4517 -98.1000 matched with DB +City: Groton, state: Massachusetts, Lat: 42.6137, Lng: -71.5614, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Wisconsin 43.9177 -87.7469 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Wisconsin 43.9177 -87.7469 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Wisconsin 43.9177 -87.7469 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hawthorne, Florida 29.5938 -82.0944 matched with DB +City: Hawthorne, state: New Jersey, Lat: 40.9579, Lng: -74.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hawthorne, Florida 29.5938 -82.0944 matched with DB +City: Hawthorne, state: California, Lat: 33.9147, Lng: -118.3476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellwood, Pennsylvania 40.6007 -78.3334 matched with DB +City: Bellwood, state: Illinois, Lat: 41.8829, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, Minnesota 44.2235 -93.5746 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vincent, Alabama 33.3849 -86.4087 matched with DB +City: Vincent, state: California, Lat: 34.0983, Lng: -117.9238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Iowa 41.3115 -95.3951 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Iowa 41.3115 -95.3951 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Iowa 41.3115 -95.3951 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Louisiana 30.3184 -91.8065 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Louisiana 30.3184 -91.8065 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Louisiana 30.3184 -91.8065 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Louisiana 30.3184 -91.8065 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Colorado 40.1635 -103.2202 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Minnesota 43.9266 -93.9546 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Alabama 33.2703 -85.8337 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Alabama 33.2703 -85.8337 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Alabama 33.2703 -85.8337 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Alabama 33.2703 -85.8337 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Alabama 33.2703 -85.8337 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Alabama 33.2703 -85.8337 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Nebraska 41.9471 -97.2171 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Versailles, Indiana 39.0634 -85.2566 matched with DB +City: Versailles, state: Kentucky, Lat: 38.0486, Lng: -84.7258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ardmore, Indiana 41.6892 -86.3175 matched with DB +City: Ardmore, state: Pennsylvania, Lat: 40.0033, Lng: -75.2947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ardmore, Indiana 41.6892 -86.3175 matched with DB +City: Ardmore, state: Oklahoma, Lat: 34.1949, Lng: -97.1256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Wisconsin 44.7544 -90.2983 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Wisconsin 44.7544 -90.2983 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Falls, South Carolina 34.5753 -80.9048 matched with DB +City: Great Falls, state: Virginia, Lat: 39.011, Lng: -77.3013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Great Falls, South Carolina 34.5753 -80.9048 matched with DB +City: Great Falls, state: Montana, Lat: 47.5022, Lng: -111.2996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guttenberg, Iowa 42.7885 -91.1058 matched with DB +City: Guttenberg, state: New Jersey, Lat: 40.7928, Lng: -74.0049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Pennsylvania 40.3056 -78.8818 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Pennsylvania 40.3056 -78.8818 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Pennsylvania 40.3056 -78.8818 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Georgia 34.2555 -83.5521 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, Ohio 39.1432 -84.3972 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Pennsylvania 40.4441 -76.4377 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Pennsylvania 40.4441 -76.4377 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Connecticut 41.2494 -73.4343 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Connecticut 41.2494 -73.4343 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Connecticut 41.2494 -73.4343 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland Park, Nebraska 42.0542 -97.3452 matched with DB +City: Woodland Park, state: New Jersey, Lat: 40.8904, Lng: -74.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, North Dakota 47.4030 -97.0635 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, South Carolina 34.6764 -82.9252 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, Pennsylvania 40.3109 -78.3243 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Minnesota 48.1940 -96.7688 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Minnesota 48.1940 -96.7688 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Minnesota 48.1940 -96.7688 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Minnesota 48.1940 -96.7688 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Minnesota 48.1940 -96.7688 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kentucky 36.8654 -86.7110 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, Tennessee 35.4228 -84.4883 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Tennessee 35.4228 -84.4883 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Tennessee 35.4228 -84.4883 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Tennessee 35.4228 -84.4883 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Texas 32.7272 -99.2957 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Texas 32.7272 -99.2957 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Texas 32.7272 -99.2957 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Texas 32.7272 -99.2957 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burton, Ohio 41.4708 -81.1456 matched with DB +City: Burton, state: Michigan, Lat: 42.9974, Lng: -83.6175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, Ohio 39.5500 -81.6362 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, Missouri 36.4930 -90.0762 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ironton, Missouri 37.5984 -90.6379 matched with DB +City: Ironton, state: Ohio, Lat: 38.5323, Lng: -82.6779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeland, Minnesota 44.9503 -92.7700 matched with DB +City: Lakeland, state: Tennessee, Lat: 35.2585, Lng: -89.7308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeland, Minnesota 44.9503 -92.7700 matched with DB +City: Lakeland, state: Florida, Lat: 28.0557, Lng: -81.9545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chatham, Virginia 36.8185 -79.3967 matched with DB +City: Chatham, state: New Jersey, Lat: 40.7274, Lng: -74.4289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chatham, Virginia 36.8185 -79.3967 matched with DB +City: Chatham, state: Illinois, Lat: 39.6733, Lng: -89.6934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watertown, Tennessee 36.1007 -86.1394 matched with DB +City: Watertown, state: South Dakota, Lat: 44.9094, Lng: -97.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Tennessee 36.1007 -86.1394 matched with DB +City: Watertown, state: New York, Lat: 43.9734, Lng: -75.9094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Watertown, Tennessee 36.1007 -86.1394 matched with DB +City: Watertown, state: Wisconsin, Lat: 43.1893, Lng: -88.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, North Carolina 35.6997 -81.7003 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, North Carolina 35.6997 -81.7003 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, North Carolina 35.6997 -81.7003 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, North Carolina 35.6997 -81.7003 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, North Carolina 35.6997 -81.7003 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, North Carolina 35.6997 -81.7003 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Missouri 38.5768 -90.3849 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Missouri 38.5768 -90.3849 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Missouri 38.5768 -90.3849 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Justice, Oklahoma 36.2908 -95.5636 matched with DB +City: Justice, state: Illinois, Lat: 41.7495, Lng: -87.8345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Virginia 36.6171 -78.5638 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Virginia 36.6171 -78.5638 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Virginia 36.6171 -78.5638 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Illinois 38.8183 -90.0915 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Illinois 38.8183 -90.0915 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Illinois 38.8183 -90.0915 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chapel Hill, Tennessee 35.6283 -86.6970 matched with DB +City: Chapel Hill, state: North Carolina, Lat: 35.9271, Lng: -79.0391, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anna, Ohio 40.3957 -84.1754 matched with DB +City: Anna, state: Texas, Lat: 33.3472, Lng: -96.5508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clermont, Indiana 39.8166 -86.3207 matched with DB +City: Clermont, state: Florida, Lat: 28.5325, Lng: -81.7208, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Versailles, Pennsylvania 40.3177 -79.8309 matched with DB +City: Versailles, state: Kentucky, Lat: 38.0486, Lng: -84.7258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Texas 30.3921 -95.6958 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Texas 30.3921 -95.6958 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Texas 30.3921 -95.6958 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Texas 30.3921 -95.6958 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Texas 30.3921 -95.6958 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Texas 30.3921 -95.6958 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bismarck, Missouri 37.7674 -90.6224 matched with DB +City: Bismarck, state: North Dakota, Lat: 46.8143, Lng: -100.7694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morris, Oklahoma 35.6153 -95.8617 matched with DB +City: Morris, state: Illinois, Lat: 41.3749, Lng: -88.4304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morris, Oklahoma 35.6153 -95.8617 matched with DB +City: Morris, state: New Jersey, Lat: 40.7959, Lng: -74.4945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Alaska 61.6159 -149.8003 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, Indiana 39.1767 -85.5746 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Ohio 40.8937 -83.6529 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Ohio 40.8937 -83.6529 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Ohio 40.8937 -83.6529 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Ohio 40.8937 -83.6529 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Ohio 40.8937 -83.6529 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest City, Pennsylvania 41.6521 -75.4691 matched with DB +City: Forest City, state: Florida, Lat: 28.6619, Lng: -81.4444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Oklahoma 34.1684 -97.4260 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Illinois 42.3526 -90.0020 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Oregon 45.8133 -122.8796 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Oregon 45.8133 -122.8796 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Oregon 45.8133 -122.8796 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Oregon 45.8133 -122.8796 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Oregon 45.8133 -122.8796 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, Illinois 40.8754 -89.5129 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, Illinois 40.8754 -89.5129 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, North Carolina 35.8072 -77.3763 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Oregon 45.5646 -117.9213 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Oregon 45.5646 -117.9213 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, West Virginia 37.8675 -81.2046 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Wisconsin 42.5049 -88.7402 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Wisconsin 42.5049 -88.7402 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, Iowa 41.7320 -92.4450 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, Iowa 41.7320 -92.4450 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Kentucky 38.7723 -84.0003 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Kentucky 38.7723 -84.0003 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Kentucky 38.7723 -84.0003 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, Utah 41.6759 -112.1376 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, Iowa 40.9923 -94.7397 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lumberton, Mississippi 31.0064 -89.4592 matched with DB +City: Lumberton, state: North Carolina, Lat: 34.6312, Lng: -79.0186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, Mississippi 31.0064 -89.4592 matched with DB +City: Lumberton, state: Texas, Lat: 30.2562, Lng: -94.207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, Mississippi 31.0064 -89.4592 matched with DB +City: Lumberton, state: New Jersey, Lat: 39.9569, Lng: -74.8036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglass, Kansas 37.5169 -97.0105 matched with DB +City: Douglass, state: Pennsylvania, Lat: 40.3438, Lng: -75.5909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Valley, California 38.2607 -122.1622 matched with DB +City: Green Valley, state: Arizona, Lat: 31.8393, Lng: -111.0009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Green Valley, California 38.2607 -122.1622 matched with DB +City: Green Valley, state: Maryland, Lat: 39.3414, Lng: -77.24, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesapeake, West Virginia 38.2232 -81.5363 matched with DB +City: Chesapeake, state: Virginia, Lat: 36.6778, Lng: -76.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Tennessee 35.1749 -84.6516 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lauderdale Lakes, Wisconsin 42.7709 -88.5778 matched with DB +City: Lauderdale Lakes, state: Florida, Lat: 26.1682, Lng: -80.2017, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South River, New Mexico 36.7892 -108.0600 matched with DB +City: South River, state: New Jersey, Lat: 40.4455, Lng: -74.3783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Illinois 41.0639 -89.7729 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Illinois 41.0639 -89.7729 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Iowa 42.8268 -96.5572 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayden, Alabama 33.8818 -86.7842 matched with DB +City: Hayden, state: Idaho, Lat: 47.768, Lng: -116.804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Nebraska 41.8356 -96.4669 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Nebraska 41.8356 -96.4669 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Nebraska 41.8356 -96.4669 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Ohio 41.7636 -81.1430 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monrovia, Indiana 39.5840 -86.4793 matched with DB +City: Monrovia, state: California, Lat: 34.165, Lng: -117.9921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton, Texas 33.7248 -102.7593 matched with DB +City: Morton, state: Illinois, Lat: 40.6135, Lng: -89.4669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monona, Iowa 43.0504 -91.3910 matched with DB +City: Monona, state: Wisconsin, Lat: 43.054, Lng: -89.3334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut Creek, North Carolina 35.3051 -77.8714 matched with DB +City: Walnut Creek, state: California, Lat: 37.9024, Lng: -122.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Mississippi 31.2867 -89.4145 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Mississippi 31.2867 -89.4145 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Mississippi 31.2867 -89.4145 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferndale, California 40.5781 -124.2612 matched with DB +City: Ferndale, state: Michigan, Lat: 42.4592, Lng: -83.1313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, California 40.5781 -124.2612 matched with DB +City: Ferndale, state: Maryland, Lat: 39.1869, Lng: -76.6331, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, California 40.5781 -124.2612 matched with DB +City: Ferndale, state: Washington, Lat: 48.8526, Lng: -122.5894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Kansas 39.4251 -99.2764 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McComb, Ohio 41.1068 -83.7898 matched with DB +City: McComb, state: Mississippi, Lat: 31.2442, Lng: -90.4716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stafford, Oregon 45.3786 -122.6822 matched with DB +City: Stafford, state: Texas, Lat: 29.6271, Lng: -95.5654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stafford, Oregon 45.3786 -122.6822 matched with DB +City: Stafford, state: New Jersey, Lat: 39.7049, Lng: -74.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferndale, Pennsylvania 40.2883 -78.9179 matched with DB +City: Ferndale, state: Michigan, Lat: 42.4592, Lng: -83.1313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Pennsylvania 40.2883 -78.9179 matched with DB +City: Ferndale, state: Maryland, Lat: 39.1869, Lng: -76.6331, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Pennsylvania 40.2883 -78.9179 matched with DB +City: Ferndale, state: Washington, Lat: 48.8526, Lng: -122.5894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Minnesota 45.0127 -96.1890 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Minnesota 45.0127 -96.1890 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Minnesota 45.0127 -96.1890 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Minnesota 45.0127 -96.1890 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Minnesota 45.0127 -96.1890 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehall, Wisconsin 44.3605 -91.3377 matched with DB +City: Whitehall, state: Ohio, Lat: 39.9682, Lng: -82.8833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Whitehall, Wisconsin 44.3605 -91.3377 matched with DB +City: Whitehall, state: Pennsylvania, Lat: 40.6571, Lng: -75.5046, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Iowa 42.2286 -91.8867 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Iowa 42.2286 -91.8867 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Iowa 42.2286 -91.8867 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loganville, Pennsylvania 39.8558 -76.7079 matched with DB +City: Loganville, state: Georgia, Lat: 33.8353, Lng: -83.8958, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Indiana 40.5214 -87.2482 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Indiana 40.5214 -87.2482 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Indiana 40.5214 -87.2482 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Indiana 40.5214 -87.2482 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Indiana 40.5214 -87.2482 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Ohio 41.6192 -83.7081 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Park, New Jersey 39.4400 -75.2624 matched with DB +City: West Park, state: Florida, Lat: 25.984, Lng: -80.1923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Pennsylvania 39.9702 -75.8555 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Pennsylvania 39.9702 -75.8555 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Pennsylvania 39.9702 -75.8555 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Virginia 39.0287 -78.2781 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Delaware 38.8072 -75.5900 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Delaware 38.8072 -75.5900 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Delaware 38.8072 -75.5900 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Delaware 38.8072 -75.5900 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malvern, Ohio 40.6894 -81.1803 matched with DB +City: Malvern, state: Arkansas, Lat: 34.3734, Lng: -92.8205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Nebraska 41.0854 -96.1333 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wakefield, Michigan 46.4767 -89.9336 matched with DB +City: Wakefield, state: Massachusetts, Lat: 42.5035, Lng: -71.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wakefield, Michigan 46.4767 -89.9336 matched with DB +City: Wakefield, state: Virginia, Lat: 38.823, Lng: -77.2406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Standish, Michigan 43.9794 -83.9637 matched with DB +City: Standish, state: Maine, Lat: 43.7811, Lng: -70.5684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Texas 33.0560 -97.5096 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Texas 33.0560 -97.5096 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Texas 33.0560 -97.5096 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Texas 33.0560 -97.5096 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, New York 43.1551 -75.9723 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, New York 43.1551 -75.9723 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Louisiana 30.8613 -91.0150 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murphy, North Carolina 35.0932 -84.0280 matched with DB +City: Murphy, state: Texas, Lat: 33.0186, Lng: -96.6105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Illinois 42.4948 -89.9913 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Illinois 42.4948 -89.9913 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Illinois 42.4948 -89.9913 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Illinois 42.4948 -89.9913 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Illinois 42.4948 -89.9913 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Point, Washington 47.5886 -122.6673 matched with DB +City: Rocky Point, state: New York, Lat: 40.9357, Lng: -72.9364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Florida 30.4667 -83.6352 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Ohio 39.8064 -82.2996 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Ohio 39.8064 -82.2996 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Ohio 39.8064 -82.2996 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhart, Kansas 37.0038 -101.8944 matched with DB +City: Elkhart, state: Indiana, Lat: 41.6916, Lng: -85.9627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jonesboro, Indiana 40.4797 -85.6304 matched with DB +City: Jonesboro, state: Arkansas, Lat: 35.8212, Lng: -90.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Illinois 39.6298 -90.4560 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Illinois 39.6298 -90.4560 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Illinois 39.6298 -90.4560 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Illinois 39.6298 -90.4560 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Illinois 39.6298 -90.4560 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barton, New Mexico 35.0653 -106.2569 matched with DB +City: Barton, state: New York, Lat: 42.0812, Lng: -76.4982, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Illinois 40.3509 -91.4277 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Virginia 38.0535 -77.3473 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Virginia 38.0535 -77.3473 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malta, Illinois 41.9291 -88.8669 matched with DB +City: Malta, state: New York, Lat: 42.9853, Lng: -73.7879, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stuart, Virginia 36.6404 -80.2687 matched with DB +City: Stuart, state: Florida, Lat: 27.1959, Lng: -80.2444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Louisiana 32.8619 -91.3911 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Louisiana 32.8619 -91.3911 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Louisiana 32.8619 -91.3911 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogden, Kansas 39.1128 -96.7028 matched with DB +City: Ogden, state: North Carolina, Lat: 34.2656, Lng: -77.7966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Kansas 39.1128 -96.7028 matched with DB +City: Ogden, state: Utah, Lat: 41.2279, Lng: -111.9682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Kansas 39.1128 -96.7028 matched with DB +City: Ogden, state: New York, Lat: 43.1646, Lng: -77.822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Indiana 39.2080 -86.2385 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Ohio 40.1996 -84.7943 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Ohio 40.1996 -84.7943 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Ohio 40.1996 -84.7943 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Ohio 40.1996 -84.7943 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Alabama 31.3423 -85.5893 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Alabama 31.3423 -85.5893 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Alabama 31.3423 -85.5893 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Alabama 31.3423 -85.5893 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine, Arizona 34.3788 -111.4574 matched with DB +City: Pine, state: Pennsylvania, Lat: 40.6437, Lng: -80.0315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morrisville, New York 42.8987 -75.6448 matched with DB +City: Morrisville, state: Pennsylvania, Lat: 40.2074, Lng: -74.78, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morrisville, New York 42.8987 -75.6448 matched with DB +City: Morrisville, state: North Carolina, Lat: 35.8368, Lng: -78.8348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, North Dakota 47.6532 -101.4219 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parsons, West Virginia 39.0942 -79.6785 matched with DB +City: Parsons, state: Kansas, Lat: 37.3405, Lng: -95.2958, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Texas 26.0703 -97.6342 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Texas 26.0703 -97.6342 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngsville, Pennsylvania 41.8525 -79.3167 matched with DB +City: Youngsville, state: Louisiana, Lat: 30.0963, Lng: -91.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Nebraska 41.4548 -96.3565 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Nebraska 41.4548 -96.3565 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Nebraska 41.4548 -96.3565 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Nebraska 41.4548 -96.3565 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Nebraska 41.4548 -96.3565 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Utah 37.5717 -113.7431 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Utah 37.5717 -113.7431 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Indiana 40.1742 -86.0211 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Indiana 40.1742 -86.0211 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Southport, Connecticut 41.1350 -73.2873 matched with DB +City: Southport, state: New York, Lat: 42.04, Lng: -76.8775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Arizona 34.3452 -112.1592 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Arizona 34.3452 -112.1592 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Arizona 34.3452 -112.1592 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Mississippi 31.3680 -89.3086 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Mississippi 31.3680 -89.3086 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Mississippi 31.3680 -89.3086 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moorhead, Mississippi 33.4494 -90.5063 matched with DB +City: Moorhead, state: Minnesota, Lat: 46.8673, Lng: -96.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, Kansas 37.9620 -101.7782 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, Kansas 37.9620 -101.7782 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cairo, Illinois 37.0062 -89.1819 matched with DB +City: Cairo, state: Georgia, Lat: 30.879, Lng: -84.205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Wisconsin 43.5397 -89.0029 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Wisconsin 43.5397 -89.0029 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wright, Wyoming 43.7492 -105.4948 matched with DB +City: Wright, state: Florida, Lat: 30.4445, Lng: -86.6419, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Utah 39.5358 -110.7344 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Utah 39.5358 -110.7344 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kyle, South Dakota 43.4245 -102.1801 matched with DB +City: Kyle, state: Texas, Lat: 29.9932, Lng: -97.8852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, California 38.8677 -121.1318 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, California 38.8677 -121.1318 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, Montana 46.3640 -104.2741 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Nebraska 40.9964 -96.1612 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Nebraska 40.9964 -96.1612 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Nebraska 40.9964 -96.1612 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Illinois 39.5925 -89.9526 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Illinois 39.5925 -89.9526 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlett, Texas 30.7952 -97.4324 matched with DB +City: Bartlett, state: Illinois, Lat: 41.9804, Lng: -88.2071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bartlett, Texas 30.7952 -97.4324 matched with DB +City: Bartlett, state: Tennessee, Lat: 35.2337, Lng: -89.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stony Point, North Carolina 35.8669 -81.0470 matched with DB +City: Stony Point, state: New York, Lat: 41.2593, Lng: -74.0112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Missouri 38.3940 -93.3313 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Missouri 38.3940 -93.3313 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Missouri 38.3940 -93.3313 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Missouri 38.3940 -93.3313 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkland, Illinois 42.0905 -88.8490 matched with DB +City: Kirkland, state: Washington, Lat: 47.697, Lng: -122.2057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kirkland, Illinois 42.0905 -88.8490 matched with DB +City: Kirkland, state: New York, Lat: 43.0368, Lng: -75.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Girard, Illinois 39.4466 -89.7821 matched with DB +City: Girard, state: Ohio, Lat: 41.1665, Lng: -80.6963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Arkansas 36.3402 -94.4578 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Arkansas 36.3402 -94.4578 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Arkansas 36.3402 -94.4578 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Arkansas 36.3402 -94.4578 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, Washington 47.6480 -120.0707 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lenox, Iowa 40.8835 -94.5583 matched with DB +City: Lenox, state: New York, Lat: 43.1113, Lng: -75.7582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rincón, Puerto Rico 18.3389 -67.2515 matched with DB +City: Rincon, state: Georgia, Lat: 32.2947, Lng: -81.2353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Indiana 38.3716 -85.9826 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montague, California 41.7275 -122.5302 matched with DB +City: Montague, state: Massachusetts, Lat: 42.5549, Lng: -72.5177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Pennsylvania 40.3331 -78.9537 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Pennsylvania 40.3331 -78.9537 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Pennsylvania 40.3331 -78.9537 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Oklahoma 34.8546 -97.3876 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canby, Minnesota 44.7158 -96.2690 matched with DB +City: Canby, state: Oregon, Lat: 45.2652, Lng: -122.6867, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baxter, Tennessee 36.1536 -85.6348 matched with DB +City: Baxter, state: Minnesota, Lat: 46.3426, Lng: -94.2793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardner, Illinois 41.1931 -88.3146 matched with DB +City: Gardner, state: Massachusetts, Lat: 42.5845, Lng: -71.9868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gardner, Illinois 41.1931 -88.3146 matched with DB +City: Gardner, state: Kansas, Lat: 38.8122, Lng: -94.9275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendon, Utah 41.7102 -111.9776 matched with DB +City: Mendon, state: New York, Lat: 42.9859, Lng: -77.5479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Puerto Rico 18.3704 -65.7733 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Puerto Rico 18.3704 -65.7733 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Mohawk, Ohio 40.6608 -81.1929 matched with DB +City: Lake Mohawk, state: New Jersey, Lat: 41.0149, Lng: -74.664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashua, Iowa 42.9503 -92.5417 matched with DB +City: Nashua, state: New Hampshire, Lat: 42.7491, Lng: -71.491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, North Carolina 35.4671 -78.1613 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, North Carolina 35.4671 -78.1613 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, North Carolina 35.4671 -78.1613 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, Indiana 40.5498 -85.2870 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Tennessee 35.7393 -85.4560 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Tennessee 35.7393 -85.4560 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Tennessee 35.6123 -87.8429 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danbury, Texas 29.2274 -95.3461 matched with DB +City: Danbury, state: Connecticut, Lat: 41.4015, Lng: -73.4709, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Texas 32.4419 -100.5322 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Alabama 31.0889 -88.0137 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Alabama 31.0889 -88.0137 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Alabama 31.0889 -88.0137 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Alabama 31.0889 -88.0137 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Alabama 31.0889 -88.0137 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Pennsylvania 41.2773 -75.8312 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Pennsylvania 41.2773 -75.8312 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Pennsylvania 41.2773 -75.8312 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Pennsylvania 41.2773 -75.8312 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Pennsylvania 41.2773 -75.8312 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, New Jersey 40.7060 -74.3130 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Pennsylvania 40.4001 -80.1872 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Pennsylvania 40.4001 -80.1872 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena, Oklahoma 36.5463 -98.2718 matched with DB +City: Helena, state: Alabama, Lat: 33.2837, Lng: -86.8791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Helena, Oklahoma 36.5463 -98.2718 matched with DB +City: Helena, state: Montana, Lat: 46.5965, Lng: -112.0202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timberlane, Illinois 42.3372 -88.8696 matched with DB +City: Timberlane, state: Louisiana, Lat: 29.8781, Lng: -90.0303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Baltimore, Ohio 39.2744 -84.6705 matched with DB +City: New Baltimore, state: Michigan, Lat: 42.6904, Lng: -82.7398, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Baltimore, Ohio 39.2744 -84.6705 matched with DB +City: New Baltimore, state: Virginia, Lat: 38.7495, Lng: -77.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest, Ohio 40.8051 -83.5116 matched with DB +City: Forest, state: Virginia, Lat: 37.3728, Lng: -79.2831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Hill, Missouri 38.3575 -90.6409 matched with DB +City: Cedar Hill, state: Texas, Lat: 32.581, Lng: -96.9591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Ohio 41.3464 -83.7948 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Ohio 41.3464 -83.7948 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Ohio 41.3464 -83.7948 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Ohio 40.0673 -80.7473 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Ohio 40.0673 -80.7473 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, New Jersey 40.9616 -73.9198 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, New Jersey 40.9616 -73.9198 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dickson, Oklahoma 34.1877 -96.9968 matched with DB +City: Dickson, state: Tennessee, Lat: 36.0637, Lng: -87.3665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kensington, New York 40.7932 -73.7222 matched with DB +City: Kensington, state: Connecticut, Lat: 41.6284, Lng: -72.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rogers, Texas 30.9300 -97.2290 matched with DB +City: Rogers, state: Minnesota, Lat: 45.1865, Lng: -93.5783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rogers, Texas 30.9300 -97.2290 matched with DB +City: Rogers, state: Arkansas, Lat: 36.317, Lng: -94.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynchburg, Ohio 39.2401 -83.7880 matched with DB +City: Lynchburg, state: Virginia, Lat: 37.4003, Lng: -79.1909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Wisconsin 43.0071 -89.0214 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Wisconsin 43.0071 -89.0214 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Wisconsin 43.0071 -89.0214 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Wisconsin 43.0071 -89.0214 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Michigan 42.6032 -85.0941 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Delaware 38.8680 -75.4229 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Delaware 38.8680 -75.4229 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Delaware 38.8680 -75.4229 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Delaware 38.8680 -75.4229 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, Iowa 41.6454 -95.7914 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, Iowa 41.6454 -95.7914 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ravenna, Michigan 43.1888 -85.9415 matched with DB +City: Ravenna, state: Ohio, Lat: 41.1612, Lng: -81.2422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Pennsylvania 40.2715 -79.8872 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Pennsylvania 41.7839 -76.7898 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Pennsylvania 41.7839 -76.7898 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Pennsylvania 41.7839 -76.7898 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Pennsylvania 41.7839 -76.7898 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Pennsylvania 41.7839 -76.7898 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Pennsylvania 41.7839 -76.7898 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Florida 28.7924 -81.2314 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salisbury, Missouri 39.4233 -92.8025 matched with DB +City: Salisbury, state: New York, Lat: 40.7454, Lng: -73.5604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Missouri 39.4233 -92.8025 matched with DB +City: Salisbury, state: Maryland, Lat: 38.3756, Lng: -75.5865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Missouri 39.4233 -92.8025 matched with DB +City: Salisbury, state: North Carolina, Lat: 35.6658, Lng: -80.4905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Missouri 39.4233 -92.8025 matched with DB +City: Salisbury, state: Massachusetts, Lat: 42.8465, Lng: -70.8616, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Missouri 39.4233 -92.8025 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.038, Lng: -75.9961, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Missouri 39.4233 -92.8025 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.5768, Lng: -75.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, South Dakota 44.2823 -96.6868 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, South Dakota 44.2823 -96.6868 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, South Dakota 44.2823 -96.6868 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, South Dakota 44.2823 -96.6868 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesterfield, South Carolina 34.7330 -80.0778 matched with DB +City: Chesterfield, state: Missouri, Lat: 38.6589, Lng: -90.5803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chesterfield, South Carolina 34.7330 -80.0778 matched with DB +City: Chesterfield, state: New Jersey, Lat: 40.1166, Lng: -74.6459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Locust Grove, Oklahoma 36.1982 -95.1689 matched with DB +City: Locust Grove, state: Georgia, Lat: 33.3446, Lng: -84.1071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Arkansas 35.7076 -91.4434 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Arkansas 35.7076 -91.4434 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Arkansas 35.7076 -91.4434 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Arkansas 35.7076 -91.4434 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Arkansas 35.7076 -91.4434 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Pennsylvania 41.1710 -76.8738 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Pennsylvania 41.1710 -76.8738 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Pennsylvania 41.1710 -76.8738 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Pennsylvania 41.1710 -76.8738 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Pennsylvania 41.1710 -76.8738 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Pennsylvania 41.1710 -76.8738 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Tennessee 36.2772 -82.1728 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Tennessee 36.2772 -82.1728 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Tennessee 36.2772 -82.1728 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Florida 29.0005 -80.9604 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Iowa 40.6711 -94.7240 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Iowa 40.6711 -94.7240 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Iowa 40.6711 -94.7240 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Iowa 40.6711 -94.7240 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Iowa 40.6711 -94.7240 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Iowa 40.6711 -94.7240 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guthrie, Kentucky 36.6503 -87.1735 matched with DB +City: Guthrie, state: Oklahoma, Lat: 35.8424, Lng: -97.4366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nederland, Colorado 39.9633 -105.5071 matched with DB +City: Nederland, state: Texas, Lat: 29.9707, Lng: -94.0015, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Minnesota 45.6100 -94.4618 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Minnesota 45.6100 -94.4618 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ravenna, Nebraska 41.0275 -98.8945 matched with DB +City: Ravenna, state: Ohio, Lat: 41.1612, Lng: -81.2422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Battle Creek, Nebraska 41.9981 -97.5994 matched with DB +City: Battle Creek, state: Michigan, Lat: 42.2985, Lng: -85.2296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Olive, Mississippi 31.7539 -89.6560 matched with DB +City: Mount Olive, state: New Jersey, Lat: 40.8662, Lng: -74.7426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wood River, Nebraska 40.8196 -98.6041 matched with DB +City: Wood River, state: Illinois, Lat: 38.8631, Lng: -90.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, California 35.2347 -119.0829 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, California 35.2347 -119.0829 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, California 35.2347 -119.0829 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Omaha, Texas 33.1820 -94.7402 matched with DB +City: Omaha, state: Nebraska, Lat: 41.2627, Lng: -96.0529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Oklahoma 35.8491 -95.1493 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Oklahoma 35.8491 -95.1493 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Pennsylvania 40.3426 -76.3793 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Pennsylvania 40.3426 -76.3793 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boaz, West Virginia 39.3671 -81.4854 matched with DB +City: Boaz, state: Alabama, Lat: 34.1985, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Oregon 42.3693 -123.3590 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardendale, Texas 32.0105 -102.3587 matched with DB +City: Gardendale, state: Alabama, Lat: 33.6677, Lng: -86.8069, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bainbridge, Pennsylvania 40.0915 -76.6581 matched with DB +City: Bainbridge, state: Georgia, Lat: 30.9052, Lng: -84.5732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bainbridge, Pennsylvania 40.0915 -76.6581 matched with DB +City: Bainbridge, state: Ohio, Lat: 41.3855, Lng: -81.3478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, California 38.9695 -121.3552 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corvallis, Montana 46.3139 -114.1123 matched with DB +City: Corvallis, state: Oregon, Lat: 44.5698, Lng: -123.2779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Pennsylvania 41.8335 -75.8761 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erie, Kansas 37.5717 -95.2418 matched with DB +City: Erie, state: Pennsylvania, Lat: 42.1167, Lng: -80.0733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Erie, Kansas 37.5717 -95.2418 matched with DB +City: Erie, state: Colorado, Lat: 40.0404, Lng: -105.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carbondale, Kansas 38.8192 -95.6932 matched with DB +City: Carbondale, state: Pennsylvania, Lat: 41.5714, Lng: -75.5048, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carbondale, Kansas 38.8192 -95.6932 matched with DB +City: Carbondale, state: Illinois, Lat: 37.7221, Lng: -89.2237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moody, Texas 31.3086 -97.3596 matched with DB +City: Moody, state: Alabama, Lat: 33.5986, Lng: -86.4963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview Park, Indiana 39.6821 -87.4143 matched with DB +City: Fairview Park, state: Ohio, Lat: 41.4419, Lng: -81.853, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Alabama 33.2193 -87.1490 matched with DB +City: Woodstock, state: Illinois, Lat: 42.3096, Lng: -88.4353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodstock, Alabama 33.2193 -87.1490 matched with DB +City: Woodstock, state: Georgia, Lat: 34.1026, Lng: -84.5091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Illinois 39.8175 -89.6180 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Illinois 39.8175 -89.6180 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Ohio 40.0506 -84.3462 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Ohio 40.0506 -84.3462 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Ohio 40.0506 -84.3462 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sleepy Hollow, Wyoming 44.2327 -105.4309 matched with DB +City: Sleepy Hollow, state: New York, Lat: 41.0936, Lng: -73.8722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hays, North Carolina 36.2469 -81.1142 matched with DB +City: Hays, state: Kansas, Lat: 38.8821, Lng: -99.3221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naples, Texas 33.2029 -94.6777 matched with DB +City: Naples, state: Florida, Lat: 26.1504, Lng: -81.7936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgantown, Pennsylvania 40.1538 -75.8884 matched with DB +City: Morgantown, state: West Virginia, Lat: 39.6383, Lng: -79.9464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroeville, Ohio 41.2440 -82.7018 matched with DB +City: Monroeville, state: Pennsylvania, Lat: 40.4262, Lng: -79.7605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvington, Kentucky 37.8779 -86.2848 matched with DB +City: Irvington, state: New Jersey, Lat: 40.7243, Lng: -74.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Missouri 39.4773 -92.0039 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Missouri 39.4773 -92.0039 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Missouri 39.4773 -92.0039 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Arkansas 35.9084 -92.6459 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Arkansas 35.9084 -92.6459 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Arkansas 35.9084 -92.6459 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Arkansas 35.9084 -92.6459 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holly Hill, South Carolina 33.3245 -80.4130 matched with DB +City: Holly Hill, state: Florida, Lat: 29.2442, Lng: -81.0465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sutton, Nebraska 40.6072 -97.8589 matched with DB +City: Sutton, state: Massachusetts, Lat: 42.1337, Lng: -71.7503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Nebraska 41.6639 -103.0962 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Nebraska 41.6639 -103.0962 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Valley, Idaho 43.6838 -114.3339 matched with DB +City: Sun Valley, state: Nevada, Lat: 39.6104, Lng: -119.777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millbrook, New York 41.7842 -73.6937 matched with DB +City: Millbrook, state: Alabama, Lat: 32.5027, Lng: -86.3737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamlin, West Virginia 38.2805 -82.1084 matched with DB +City: Hamlin, state: New York, Lat: 43.3213, Lng: -77.9135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palestine, Illinois 39.0016 -87.6125 matched with DB +City: Palestine, state: Texas, Lat: 31.7544, Lng: -95.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edina, Missouri 40.1680 -92.1732 matched with DB +City: Edina, state: Minnesota, Lat: 44.8914, Lng: -93.3602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Pennsylvania 41.3238 -74.8012 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Pennsylvania 41.3238 -74.8012 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Pennsylvania 41.3238 -74.8012 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Pennsylvania 41.3238 -74.8012 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Virginia 37.6348 -79.4514 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Virginia 37.6348 -79.4514 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, Wisconsin 42.8524 -89.3723 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, Wisconsin 42.8524 -89.3723 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Antonio, Florida 28.3395 -82.2786 matched with DB +City: San Antonio, state: Texas, Lat: 29.4632, Lng: -98.5238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gadsden, South Carolina 33.8480 -80.7663 matched with DB +City: Gadsden, state: Alabama, Lat: 34.0086, Lng: -86.0157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsville, Illinois 39.3381 -87.8814 matched with DB +City: Martinsville, state: Virginia, Lat: 36.6826, Lng: -79.8636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Illinois 39.3381 -87.8814 matched with DB +City: Martinsville, state: Indiana, Lat: 39.4149, Lng: -86.4316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Illinois 39.3381 -87.8814 matched with DB +City: Martinsville, state: New Jersey, Lat: 40.603, Lng: -74.5751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Airy, Georgia 34.5221 -83.4976 matched with DB +City: Mount Airy, state: Maryland, Lat: 39.3742, Lng: -77.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Airy, Georgia 34.5221 -83.4976 matched with DB +City: Mount Airy, state: North Carolina, Lat: 36.5083, Lng: -80.6155, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, California 39.9310 -120.9548 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, California 39.9310 -120.9548 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Prairie, Montana 47.5386 -111.4918 matched with DB +City: Sun Prairie, state: Wisconsin, Lat: 43.1825, Lng: -89.2362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Peter, Wisconsin 43.8377 -88.3466 matched with DB +City: St. Peter, state: Minnesota, Lat: 44.3295, Lng: -93.9658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, New York 42.8991 -77.4242 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Illinois 42.1008 -88.7619 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Illinois 42.1008 -88.7619 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Illinois 42.1008 -88.7619 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Alabama 34.0308 -86.3179 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Alabama 34.0308 -86.3179 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Alabama 34.0308 -86.3179 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Colorado 37.4050 -102.6189 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Ohio 40.8625 -81.8604 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Ohio 40.8625 -81.8604 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Pennsylvania 40.9914 -80.3671 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Pennsylvania 40.9914 -80.3671 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Pennsylvania 40.9914 -80.3671 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wakefield, Nebraska 42.2665 -96.8632 matched with DB +City: Wakefield, state: Massachusetts, Lat: 42.5035, Lng: -71.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wakefield, Nebraska 42.2665 -96.8632 matched with DB +City: Wakefield, state: Virginia, Lat: 38.823, Lng: -77.2406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Arkansas 33.5347 -92.4667 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Arkansas 33.5347 -92.4667 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Arkansas 33.5347 -92.4667 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ardmore, Tennessee 35.0031 -86.8548 matched with DB +City: Ardmore, state: Pennsylvania, Lat: 40.0033, Lng: -75.2947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ardmore, Tennessee 35.0031 -86.8548 matched with DB +City: Ardmore, state: Oklahoma, Lat: 34.1949, Lng: -97.1256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Texas 31.0250 -96.4876 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fullerton, Nebraska 41.3647 -97.9726 matched with DB +City: Fullerton, state: California, Lat: 33.8841, Lng: -117.9279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fullerton, Nebraska 41.3647 -97.9726 matched with DB +City: Fullerton, state: Pennsylvania, Lat: 40.6309, Lng: -75.4834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Heights, Iowa 41.6551 -91.5589 matched with DB +City: University Heights, state: Ohio, Lat: 41.4948, Lng: -81.535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Valley, South Dakota 44.0390 -103.1116 matched with DB +City: Green Valley, state: Arizona, Lat: 31.8393, Lng: -111.0009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Green Valley, South Dakota 44.0390 -103.1116 matched with DB +City: Green Valley, state: Maryland, Lat: 39.3414, Lng: -77.24, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami, Arizona 33.3951 -110.8724 matched with DB +City: Miami, state: Florida, Lat: 25.784, Lng: -80.2101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Miami, Arizona 33.3951 -110.8724 matched with DB +City: Miami, state: Oklahoma, Lat: 36.8878, Lng: -94.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Missouri 37.1102 -92.5804 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Missouri 37.1102 -92.5804 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Missouri 37.1102 -92.5804 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Missouri 37.1102 -92.5804 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Florida 30.4255 -84.9773 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Florida 30.4255 -84.9773 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Florida 30.4255 -84.9773 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Florida 30.4255 -84.9773 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Florida 30.4255 -84.9773 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Ohio 39.1923 -84.7244 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Ohio 39.1923 -84.7244 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Illinois 40.1101 -87.7769 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galveston, Indiana 40.5766 -86.1924 matched with DB +City: Galveston, state: Texas, Lat: 29.2484, Lng: -94.8913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mantua, Utah 41.5006 -111.9344 matched with DB +City: Mantua, state: New Jersey, Lat: 39.7618, Lng: -75.1686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut, Illinois 41.5571 -89.5912 matched with DB +City: Walnut, state: California, Lat: 34.0334, Lng: -117.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Appleton, Minnesota 45.1998 -96.0225 matched with DB +City: Appleton, state: Wisconsin, Lat: 44.278, Lng: -88.3892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Lake, Illinois 42.2103 -88.0531 matched with DB +City: Forest Lake, state: Minnesota, Lat: 45.2536, Lng: -92.9582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millbury, Ohio 41.5648 -83.4255 matched with DB +City: Millbury, state: Massachusetts, Lat: 42.1925, Lng: -71.7741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheaton, Minnesota 45.8059 -96.4980 matched with DB +City: Wheaton, state: Illinois, Lat: 41.8561, Lng: -88.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheaton, Minnesota 45.8059 -96.4980 matched with DB +City: Wheaton, state: Maryland, Lat: 39.0492, Lng: -77.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, West Virginia 38.2301 -82.4415 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, West Virginia 38.2301 -82.4415 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelton, Nebraska 40.7784 -98.7294 matched with DB +City: Shelton, state: Connecticut, Lat: 41.306, Lng: -73.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelton, Nebraska 40.7784 -98.7294 matched with DB +City: Shelton, state: Washington, Lat: 47.2186, Lng: -123.1121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton, Washington 46.5575 -122.2815 matched with DB +City: Morton, state: Illinois, Lat: 40.6135, Lng: -89.4669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Pennsylvania 39.9163 -76.5840 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Pennsylvania 39.9163 -76.5840 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Pennsylvania 39.9163 -76.5840 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Minnesota 45.4547 -94.5135 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Minnesota 45.4547 -94.5135 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Minnesota 45.4547 -94.5135 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Minnesota 45.4547 -94.5135 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Minnesota 45.4547 -94.5135 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleburg, Pennsylvania 40.7892 -77.0445 matched with DB +City: Middleburg, state: Florida, Lat: 30.0502, Lng: -81.9011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Michigan 43.2671 -82.5374 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Michigan 43.2671 -82.5374 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Michigan 43.2671 -82.5374 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Michigan 43.2671 -82.5374 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Michigan 43.2671 -82.5374 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, Nebraska 42.3534 -97.7871 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, Nebraska 42.3534 -97.7871 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Arkansas 35.0635 -94.2373 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Arkansas 35.0635 -94.2373 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Arkansas 35.0635 -94.2373 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Arkansas 35.0635 -94.2373 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union City, Oklahoma 35.4015 -97.9047 matched with DB +City: Union City, state: New Jersey, Lat: 40.7675, Lng: -74.0323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Oklahoma 35.4015 -97.9047 matched with DB +City: Union City, state: Tennessee, Lat: 36.4267, Lng: -89.0474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Oklahoma 35.4015 -97.9047 matched with DB +City: Union City, state: Georgia, Lat: 33.5942, Lng: -84.5629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union City, Oklahoma 35.4015 -97.9047 matched with DB +City: Union City, state: California, Lat: 37.6032, Lng: -122.0181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlotte, Texas 28.8593 -98.7006 matched with DB +City: Charlotte, state: Michigan, Lat: 42.5662, Lng: -84.8304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charlotte, Texas 28.8593 -98.7006 matched with DB +City: Charlotte, state: North Carolina, Lat: 35.2083, Lng: -80.8303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coon Rapids, Iowa 41.8747 -94.6785 matched with DB +City: Coon Rapids, state: Minnesota, Lat: 45.1755, Lng: -93.3094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Republic, Pennsylvania 39.9664 -79.8768 matched with DB +City: Republic, state: Missouri, Lat: 37.1452, Lng: -93.4446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snyder, Oklahoma 34.6550 -98.9535 matched with DB +City: Snyder, state: Texas, Lat: 32.7133, Lng: -100.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlantic Beach, New York 40.5893 -73.7295 matched with DB +City: Atlantic Beach, state: Florida, Lat: 30.3375, Lng: -81.4127, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edinburg, Virginia 38.8235 -78.5634 matched with DB +City: Edinburg, state: Texas, Lat: 26.3196, Lng: -98.1597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Wisconsin 43.6560 -90.3365 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnson City, Kansas 37.5703 -101.7447 matched with DB +City: Johnson City, state: New York, Lat: 42.123, Lng: -75.9624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnson City, Kansas 37.5703 -101.7447 matched with DB +City: Johnson City, state: Tennessee, Lat: 36.3406, Lng: -82.3806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, Texas 33.3649 -96.4598 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Texas 33.3649 -96.4598 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Texas 33.3649 -96.4598 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bangor, Wisconsin 43.8937 -90.9934 matched with DB +City: Bangor, state: Maine, Lat: 44.8323, Lng: -68.7906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plano, Kentucky 36.8772 -86.4165 matched with DB +City: Plano, state: Illinois, Lat: 41.6757, Lng: -88.5293, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plano, Kentucky 36.8772 -86.4165 matched with DB +City: Plano, state: Texas, Lat: 33.0502, Lng: -96.7486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centreville, Michigan 41.9213 -85.5259 matched with DB +City: Centreville, state: Virginia, Lat: 38.839, Lng: -77.4389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Iowa 42.7798 -92.6680 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Iowa 42.7798 -92.6680 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Iowa 42.7798 -92.6680 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Grove, Ohio 39.9513 -81.9592 matched with DB +City: Pleasant Grove, state: Alabama, Lat: 33.494, Lng: -86.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Grove, Ohio 39.9513 -81.9592 matched with DB +City: Pleasant Grove, state: Utah, Lat: 40.3716, Lng: -111.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, North Dakota 48.2572 -101.4146 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, North Carolina 35.6378 -80.1106 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Colorado 37.2574 -105.9007 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Colorado 37.2574 -105.9007 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Colorado 37.2574 -105.9007 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Tennessee 36.5640 -84.4455 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Tennessee 36.5640 -84.4455 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ardmore, Alabama 34.9847 -86.8373 matched with DB +City: Ardmore, state: Pennsylvania, Lat: 40.0033, Lng: -75.2947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ardmore, Alabama 34.9847 -86.8373 matched with DB +City: Ardmore, state: Oklahoma, Lat: 34.1949, Lng: -97.1256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Windsor, Maryland 39.5443 -77.1012 matched with DB +City: New Windsor, state: New York, Lat: 41.4742, Lng: -74.1089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, Michigan 41.9424 -84.8826 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, Michigan 41.9424 -84.8826 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Wyoming 43.4860 -110.8937 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut Creek, Ohio 40.5427 -81.7213 matched with DB +City: Walnut Creek, state: California, Lat: 37.9024, Lng: -122.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookside, New Jersey 40.7944 -74.5661 matched with DB +City: Brookside, state: Delaware, Lat: 39.6665, Lng: -75.7152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perryville, Arkansas 35.0120 -92.8030 matched with DB +City: Perryville, state: Missouri, Lat: 37.7263, Lng: -89.8759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmdale, Pennsylvania 40.2962 -76.6234 matched with DB +City: Palmdale, state: California, Lat: 34.5944, Lng: -118.1057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westlake, Texas 32.9809 -97.2041 matched with DB +City: Westlake, state: Ohio, Lat: 41.4524, Lng: -81.9294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Texas 30.4148 -97.0094 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Texas 30.4148 -97.0094 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Texas 30.4148 -97.0094 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Texas 30.4148 -97.0094 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Texas 30.4148 -97.0094 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aberdeen, Ohio 38.6713 -83.7704 matched with DB +City: Aberdeen, state: South Dakota, Lat: 45.4649, Lng: -98.4686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Ohio 38.6713 -83.7704 matched with DB +City: Aberdeen, state: Maryland, Lat: 39.5151, Lng: -76.1733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Ohio 38.6713 -83.7704 matched with DB +City: Aberdeen, state: North Carolina, Lat: 35.135, Lng: -79.4326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Ohio 38.6713 -83.7704 matched with DB +City: Aberdeen, state: Washington, Lat: 46.9757, Lng: -123.8094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aberdeen, Ohio 38.6713 -83.7704 matched with DB +City: Aberdeen, state: New Jersey, Lat: 40.4165, Lng: -74.2249, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, California 38.4776 -120.8584 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, California 38.4776 -120.8584 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, California 38.4776 -120.8584 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, California 38.4776 -120.8584 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, California 38.4776 -120.8584 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, California 38.4776 -120.8584 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Texas 30.8835 -97.4025 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Illinois 39.3444 -90.2080 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Illinois 39.3444 -90.2080 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Illinois 39.3444 -90.2080 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winthrop, Minnesota 44.5424 -94.3598 matched with DB +City: Winthrop, state: Massachusetts, Lat: 42.3761, Lng: -70.9846, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reno, Ohio 39.3769 -81.3933 matched with DB +City: Reno, state: Nevada, Lat: 39.5497, Lng: -119.8483, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Michigan 43.2928 -85.0789 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Illinois 40.9348 -87.9343 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Illinois 40.9348 -87.9343 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgantown, Indiana 39.3730 -86.2584 matched with DB +City: Morgantown, state: West Virginia, Lat: 39.6383, Lng: -79.9464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Indiana 40.6878 -85.4250 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Indiana 40.6878 -85.4250 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Indiana 40.6878 -85.4250 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Indiana 40.6878 -85.4250 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Indiana 40.6878 -85.4250 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Georgia 32.0885 -84.6625 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Georgia 32.0885 -84.6625 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Georgia 32.0885 -84.6625 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Georgia 32.0885 -84.6625 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livonia, Louisiana 30.5623 -91.5501 matched with DB +City: Livonia, state: Michigan, Lat: 42.3972, Lng: -83.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rio Vista, Texas 32.2351 -97.3745 matched with DB +City: Rio Vista, state: California, Lat: 38.1765, Lng: -121.7025, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homewood, South Carolina 33.8927 -79.0518 matched with DB +City: Homewood, state: Illinois, Lat: 41.5591, Lng: -87.661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Homewood, South Carolina 33.8927 -79.0518 matched with DB +City: Homewood, state: Alabama, Lat: 33.4619, Lng: -86.809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, New Jersey 40.3838 -74.6122 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, New Jersey 40.3838 -74.6122 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, New Jersey 40.3838 -74.6122 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Utah 39.6299 -111.4368 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Missouri 37.4162 -93.8432 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Missouri 37.4162 -93.8432 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Missouri 37.4162 -93.8432 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Oregon 43.4233 -123.2969 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Oregon 43.4233 -123.2969 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Oregon 43.4233 -123.2969 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhorn, California 36.8103 -121.7212 matched with DB +City: Elkhorn, state: Wisconsin, Lat: 42.6713, Lng: -88.5377, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Wisconsin 44.8498 -92.2442 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Wisconsin 44.8498 -92.2442 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Wisconsin 44.8498 -92.2442 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Pennsylvania 41.5382 -75.7390 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolivar, West Virginia 39.3241 -77.7517 matched with DB +City: Bolivar, state: Missouri, Lat: 37.6059, Lng: -93.4175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Utah 41.8106 -112.1403 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Utah 41.8106 -112.1403 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Utah 41.8106 -112.1403 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Utah 41.8106 -112.1403 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Iowa 42.9876 -96.0094 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Iowa 42.9876 -96.0094 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, New York 44.7482 -74.9970 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, New York 44.7482 -74.9970 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Indiana 40.5975 -84.9568 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Indiana 40.5975 -84.9568 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Michigan 42.4443 -85.0187 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Michigan 42.4443 -85.0187 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Michigan 42.4443 -85.0187 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, New Mexico 31.8271 -107.6422 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, New Mexico 31.8271 -107.6422 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, New Mexico 31.8271 -107.6422 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, New Mexico 31.8271 -107.6422 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, New Mexico 31.8271 -107.6422 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atoka, New Mexico 32.7783 -104.3931 matched with DB +City: Atoka, state: Tennessee, Lat: 35.4239, Lng: -89.7861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phoenix, Illinois 41.6118 -87.6308 matched with DB +City: Phoenix, state: Arizona, Lat: 33.5722, Lng: -112.0892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Mississippi 31.5525 -90.1145 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyndon, Kansas 38.6120 -95.6844 matched with DB +City: Lyndon, state: Kentucky, Lat: 38.2645, Lng: -85.5891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sebastian, Texas 26.3454 -97.7964 matched with DB +City: Sebastian, state: Florida, Lat: 27.7822, Lng: -80.4819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Payson, Illinois 39.8169 -91.2443 matched with DB +City: Payson, state: Utah, Lat: 40.0355, Lng: -111.739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Payson, Illinois 39.8169 -91.2443 matched with DB +City: Payson, state: Arizona, Lat: 34.2433, Lng: -111.3195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avondale, Pennsylvania 39.8248 -75.7819 matched with DB +City: Avondale, state: Arizona, Lat: 33.3873, Lng: -112.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Oklahoma 36.8374 -99.6465 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Oklahoma 36.8374 -99.6465 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pasadena Hills, Missouri 38.7083 -90.2921 matched with DB +City: Pasadena Hills, state: Florida, Lat: 28.2881, Lng: -82.238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Milford, Illinois 42.1750 -89.0569 matched with DB +City: New Milford, state: New Jersey, Lat: 40.9337, Lng: -74.0196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Darien, Wisconsin 42.6007 -88.7129 matched with DB +City: Darien, state: Illinois, Lat: 41.7448, Lng: -87.9822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ruston, Washington 47.2982 -122.5103 matched with DB +City: Ruston, state: Louisiana, Lat: 32.5328, Lng: -92.6363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, Wisconsin 43.8851 -89.4926 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Wisconsin 43.8851 -89.4926 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Wisconsin 43.8851 -89.4926 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, Ohio 39.3418 -83.5520 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, Ohio 39.3418 -83.5520 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, Florida 28.6114 -82.0493 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Florida 28.6114 -82.0493 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Florida 28.6114 -82.0493 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Wisconsin 44.3328 -91.4172 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Wisconsin 44.3328 -91.4172 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Wisconsin 44.3328 -91.4172 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Wisconsin 44.3328 -91.4172 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greene, Iowa 42.8968 -92.8041 matched with DB +City: Greene, state: Pennsylvania, Lat: 39.9543, Lng: -77.5668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plains, Kansas 37.2642 -100.5898 matched with DB +City: Plains, state: Pennsylvania, Lat: 41.2657, Lng: -75.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Texas 31.2583 -95.9794 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Texas 31.2583 -95.9794 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salina, Oklahoma 36.2909 -95.1528 matched with DB +City: Salina, state: Kansas, Lat: 38.8136, Lng: -97.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salina, Oklahoma 36.2909 -95.1528 matched with DB +City: Salina, state: New York, Lat: 43.1023, Lng: -76.1768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Plata, Missouri 40.0242 -92.4914 matched with DB +City: La Plata, state: Maryland, Lat: 38.5352, Lng: -76.97, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Missouri 40.3966 -93.5884 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Missouri 40.3966 -93.5884 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Missouri 40.3966 -93.5884 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malvern, Iowa 41.0038 -95.5842 matched with DB +City: Malvern, state: Arkansas, Lat: 34.3734, Lng: -92.8205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lone Tree, Iowa 41.4859 -91.4267 matched with DB +City: Lone Tree, state: Colorado, Lat: 39.5309, Lng: -104.8709, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Island, Washington 47.3733 -120.1420 matched with DB +City: Rock Island, state: Illinois, Lat: 41.4699, Lng: -90.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockbridge, Michigan 42.4483 -84.1757 matched with DB +City: Stockbridge, state: Georgia, Lat: 33.5254, Lng: -84.2295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peabody, Kansas 38.1683 -97.1043 matched with DB +City: Peabody, state: Massachusetts, Lat: 42.5335, Lng: -70.9725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, Pennsylvania 41.9176 -77.5402 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Pennsylvania 41.9176 -77.5402 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Pennsylvania 41.9176 -77.5402 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medford, Minnesota 44.1685 -93.2472 matched with DB +City: Medford, state: Massachusetts, Lat: 42.4234, Lng: -71.1087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Minnesota 44.1685 -93.2472 matched with DB +City: Medford, state: New York, Lat: 40.822, Lng: -72.9859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Minnesota 44.1685 -93.2472 matched with DB +City: Medford, state: Oregon, Lat: 42.3372, Lng: -122.854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Minnesota 44.1685 -93.2472 matched with DB +City: Medford, state: New Jersey, Lat: 39.8639, Lng: -74.8231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission, South Dakota 43.3063 -100.6610 matched with DB +City: Mission, state: Kansas, Lat: 39.027, Lng: -94.6568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mission, South Dakota 43.3063 -100.6610 matched with DB +City: Mission, state: Texas, Lat: 26.2039, Lng: -98.3256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Wisconsin 44.6784 -91.1204 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Wisconsin 44.6784 -91.1204 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Wisconsin 44.6784 -91.1204 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Darien, Georgia 31.3568 -81.4314 matched with DB +City: Darien, state: Illinois, Lat: 41.7448, Lng: -87.9822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Alabama 33.9964 -86.5671 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Alabama 33.9964 -86.5671 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Alabama 33.9964 -86.5671 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bend, Nebraska 41.4620 -96.7857 matched with DB +City: North Bend, state: Oregon, Lat: 43.4075, Lng: -124.2364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Berlin, Illinois 39.7261 -89.9143 matched with DB +City: New Berlin, state: Wisconsin, Lat: 42.9726, Lng: -88.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ellicott, Colorado 38.8256 -104.3829 matched with DB +City: Ellicott, state: New York, Lat: 42.133, Lng: -79.236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Illinois 40.6278 -87.6963 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Illinois 40.6278 -87.6963 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Illinois 40.6278 -87.6963 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Illinois 40.6278 -87.6963 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, Texas 30.3460 -96.5311 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, Texas 30.3460 -96.5311 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Mississippi 34.8387 -89.6144 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Mississippi 34.8387 -89.6144 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, North Carolina 35.7331 -80.6817 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, North Carolina 35.7331 -80.6817 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, North Carolina 35.7331 -80.6817 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, Alabama 31.0552 -85.3008 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, New Jersey 40.5694 -75.0916 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, New Jersey 40.5694 -75.0916 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, New Jersey 40.5694 -75.0916 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, New Jersey 40.5694 -75.0916 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, Idaho 46.0510 -116.3498 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Ohio 38.9436 -83.6540 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Ohio 38.9436 -83.6540 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Ohio 38.9436 -83.6540 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Ohio 38.9436 -83.6540 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Ohio 38.9436 -83.6540 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Texas 28.0706 -97.0429 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Texas 28.0706 -97.0429 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. John, Kansas 38.0000 -98.7611 matched with DB +City: St. John, state: Indiana, Lat: 41.4429, Lng: -87.4697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coldwater, Mississippi 34.6902 -89.9757 matched with DB +City: Coldwater, state: Michigan, Lat: 41.9465, Lng: -84.9989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethesda, Ohio 40.0164 -81.0727 matched with DB +City: Bethesda, state: Maryland, Lat: 38.9866, Lng: -77.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Shore, Utah 40.1294 -111.7362 matched with DB +City: Lake Shore, state: Maryland, Lat: 39.103, Lng: -76.4876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairland, Oklahoma 36.7513 -94.8472 matched with DB +City: Fairland, state: Maryland, Lat: 39.0803, Lng: -76.9527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brunswick, North Carolina 34.2877 -78.7085 matched with DB +City: Brunswick, state: Ohio, Lat: 41.2465, Lng: -81.8198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, North Carolina 34.2877 -78.7085 matched with DB +City: Brunswick, state: Georgia, Lat: 31.1449, Lng: -81.4746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, North Carolina 34.2877 -78.7085 matched with DB +City: Brunswick, state: Maine, Lat: 43.9007, Lng: -69.9761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, North Carolina 34.2877 -78.7085 matched with DB +City: Brunswick, state: New York, Lat: 42.7558, Lng: -73.5903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apple Valley, Utah 37.0810 -113.1034 matched with DB +City: Apple Valley, state: Minnesota, Lat: 44.7457, Lng: -93.2004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Apple Valley, Utah 37.0810 -113.1034 matched with DB +City: Apple Valley, state: California, Lat: 34.5352, Lng: -117.2109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Texas 33.0050 -97.4856 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Texas 33.0050 -97.4856 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Texas 33.0050 -97.4856 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Texas 33.0050 -97.4856 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Texas 33.0050 -97.4856 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, Ohio 39.4063 -83.1836 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Ohio 39.4063 -83.1836 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Ohio 39.4063 -83.1836 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Francis, Kansas 39.7714 -101.8015 matched with DB +City: St. Francis, state: Wisconsin, Lat: 42.9716, Lng: -87.873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edison, Georgia 31.5608 -84.7374 matched with DB +City: Edison, state: New Jersey, Lat: 40.536, Lng: -74.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodburn, Indiana 41.1287 -84.8503 matched with DB +City: Woodburn, state: Oregon, Lat: 45.1472, Lng: -122.8603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodburn, Indiana 41.1287 -84.8503 matched with DB +City: Woodburn, state: Virginia, Lat: 38.8503, Lng: -77.2322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, Illinois 39.6443 -88.7411 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, Illinois 39.6443 -88.7411 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gretna, Virginia 36.9492 -79.3647 matched with DB +City: Gretna, state: Nebraska, Lat: 41.1314, Lng: -96.245, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gretna, Virginia 36.9492 -79.3647 matched with DB +City: Gretna, state: Louisiana, Lat: 29.9101, Lng: -90.0515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olympia, South Carolina 33.9768 -81.0349 matched with DB +City: Olympia, state: Washington, Lat: 47.0417, Lng: -122.8959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Arkansas 36.3911 -92.4732 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chico, Texas 33.2960 -97.7986 matched with DB +City: Chico, state: California, Lat: 39.7578, Lng: -121.8161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Virginia 38.0036 -79.1523 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Park, Iowa 43.4468 -95.3261 matched with DB +City: Lake Park, state: Florida, Lat: 26.7998, Lng: -80.0681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurens, Iowa 42.8475 -94.8480 matched with DB +City: Laurens, state: South Carolina, Lat: 34.5022, Lng: -82.0207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, Georgia 31.6711 -83.6352 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Alabama 33.1643 -86.4412 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Alabama 33.1643 -86.4412 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Alabama 33.1643 -86.4412 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Markham, Texas 28.9627 -96.0645 matched with DB +City: Markham, state: Illinois, Lat: 41.6, Lng: -87.6904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, Tennessee 35.4128 -89.5412 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutherford, Tennessee 36.1249 -88.9920 matched with DB +City: Rutherford, state: New Jersey, Lat: 40.8203, Lng: -74.1057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fraser, Colorado 39.9303 -105.8029 matched with DB +City: Fraser, state: Michigan, Lat: 42.5388, Lng: -82.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Montana 48.0858 -114.6711 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Montana 48.0858 -114.6711 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Montana 48.0858 -114.6711 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Montana 48.0858 -114.6711 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Montana 48.0858 -114.6711 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Park, Pennsylvania 40.6216 -77.5707 matched with DB +City: Highland Park, state: New Jersey, Lat: 40.5006, Lng: -74.4283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Pennsylvania 40.6216 -77.5707 matched with DB +City: Highland Park, state: Michigan, Lat: 42.4052, Lng: -83.0977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Pennsylvania 40.6216 -77.5707 matched with DB +City: Highland Park, state: Illinois, Lat: 42.1823, Lng: -87.8104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Pennsylvania 40.6216 -77.5707 matched with DB +City: Highland Park, state: Texas, Lat: 32.8311, Lng: -96.8012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dryden, Michigan 42.9456 -83.1240 matched with DB +City: Dryden, state: New York, Lat: 42.4786, Lng: -76.3564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maricopa, California 35.0516 -119.4058 matched with DB +City: Maricopa, state: Arizona, Lat: 33.0408, Lng: -112.0011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Utah 41.3426 -111.8649 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Utah 41.3426 -111.8649 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Callaway, Maryland 38.2324 -76.5231 matched with DB +City: Callaway, state: Florida, Lat: 30.1349, Lng: -85.5568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boulder, Montana 46.2359 -112.1198 matched with DB +City: Boulder, state: Colorado, Lat: 40.0248, Lng: -105.2524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, Georgia 34.4383 -84.6998 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, Georgia 34.4383 -84.6998 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhart, Texas 31.6276 -95.5789 matched with DB +City: Elkhart, state: Indiana, Lat: 41.6916, Lng: -85.9627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Ohio 40.5896 -82.4211 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Ohio 40.5896 -82.4211 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Oregon 43.9208 -122.7819 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Oregon 43.9208 -122.7819 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Oregon 43.9208 -122.7819 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atwater, Minnesota 45.1356 -94.7769 matched with DB +City: Atwater, state: California, Lat: 37.3529, Lng: -120.5959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Kansas 38.9077 -95.8158 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, Minnesota 43.6332 -95.9329 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield, Iowa 42.8928 -93.2086 matched with DB +City: Sheffield, state: Alabama, Lat: 34.757, Lng: -87.6977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Bend, New York 44.0198 -75.7076 matched with DB +City: Great Bend, state: Kansas, Lat: 38.3593, Lng: -98.8015, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Star, North Carolina 35.3992 -79.7832 matched with DB +City: Star, state: Idaho, Lat: 43.7026, Lng: -116.4914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gretna, Florida 30.5929 -84.6876 matched with DB +City: Gretna, state: Nebraska, Lat: 41.1314, Lng: -96.245, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gretna, Florida 30.5929 -84.6876 matched with DB +City: Gretna, state: Louisiana, Lat: 29.9101, Lng: -90.0515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reading, Michigan 41.8396 -84.7478 matched with DB +City: Reading, state: Pennsylvania, Lat: 40.34, Lng: -75.9267, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Michigan 41.8396 -84.7478 matched with DB +City: Reading, state: Ohio, Lat: 39.2242, Lng: -84.4333, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Michigan 41.8396 -84.7478 matched with DB +City: Reading, state: Massachusetts, Lat: 42.5351, Lng: -71.1056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, Ohio 40.5545 -81.7998 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clark, South Dakota 44.8809 -97.7348 matched with DB +City: Clark, state: New Jersey, Lat: 40.6203, Lng: -74.3134, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, Louisiana 30.4429 -91.4601 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, Louisiana 30.4429 -91.4601 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Pennsylvania 40.2494 -80.2110 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrensburg, Illinois 39.9320 -89.0628 matched with DB +City: Warrensburg, state: Missouri, Lat: 38.7627, Lng: -93.726, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Pennsylvania 40.4630 -78.2049 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Country Club Hills, Missouri 38.7208 -90.2751 matched with DB +City: Country Club Hills, state: Illinois, Lat: 41.5636, Lng: -87.7251, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paducah, Texas 34.0144 -100.3038 matched with DB +City: Paducah, state: Kentucky, Lat: 37.0711, Lng: -88.644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Louisiana 29.9521 -92.1540 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceville, Virginia 36.7565 -77.8539 matched with DB +City: Lawrenceville, state: Georgia, Lat: 33.9523, Lng: -83.9932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Germantown, Illinois 38.5552 -89.5412 matched with DB +City: Germantown, state: Wisconsin, Lat: 43.2343, Lng: -88.1217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Illinois 38.5552 -89.5412 matched with DB +City: Germantown, state: Maryland, Lat: 39.1755, Lng: -77.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Illinois 38.5552 -89.5412 matched with DB +City: Germantown, state: Tennessee, Lat: 35.0829, Lng: -89.7824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, South Dakota 44.2136 -103.3717 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossville, Illinois 40.3814 -87.6699 matched with DB +City: Rossville, state: Maryland, Lat: 39.3572, Lng: -76.4767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rapid City, Michigan 44.8366 -85.2871 matched with DB +City: Rapid City, state: South Dakota, Lat: 44.0716, Lng: -103.2204, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Mississippi 33.6836 -88.3260 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, California 40.7341 -123.0618 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitewater, California 33.9356 -116.6873 matched with DB +City: Whitewater, state: Wisconsin, Lat: 42.8372, Lng: -88.7341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaverton, Michigan 43.8809 -84.4883 matched with DB +City: Beaverton, state: Oregon, Lat: 45.4779, Lng: -122.8168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Minnesota 45.2974 -94.9478 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Falls, Kansas 39.3407 -95.4612 matched with DB +City: Valley Falls, state: Rhode Island, Lat: 41.9233, Lng: -71.3924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. George, Kansas 39.1915 -96.4185 matched with DB +City: St. George, state: Utah, Lat: 37.0758, Lng: -113.5752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rolla, North Dakota 48.8532 -99.6143 matched with DB +City: Rolla, state: Missouri, Lat: 37.9459, Lng: -91.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grass Valley, Nevada 40.7971 -117.7603 matched with DB +City: Grass Valley, state: California, Lat: 39.2238, Lng: -121.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveland, Idaho 43.2235 -112.3755 matched with DB +City: Groveland, state: Florida, Lat: 28.6098, Lng: -81.8246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Texas 28.6504 -96.9022 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Texas 28.6504 -96.9022 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Texas 28.6504 -96.9022 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Texas 28.6504 -96.9022 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santee, South Carolina 33.4801 -80.4852 matched with DB +City: Santee, state: California, Lat: 32.8554, Lng: -116.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairhope, Pennsylvania 40.1150 -79.8388 matched with DB +City: Fairhope, state: Alabama, Lat: 30.5209, Lng: -87.8813, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Arkansas 36.2657 -91.5186 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Arkansas 36.2657 -91.5186 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Arkansas 36.2657 -91.5186 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Arkansas 36.2657 -91.5186 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossville, Tennessee 35.0324 -89.5612 matched with DB +City: Rossville, state: Maryland, Lat: 39.3572, Lng: -76.4767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, Iowa 42.1062 -93.6461 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, West Virginia 39.4197 -80.2833 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, West Virginia 39.4197 -80.2833 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Valley, Nevada 39.6178 -119.8231 matched with DB +City: Golden Valley, state: Minnesota, Lat: 44.9901, Lng: -93.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, Indiana 41.7435 -86.8521 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Indiana 41.7435 -86.8521 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Indiana 41.7435 -86.8521 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Illinois 38.7695 -88.5067 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Illinois 38.7695 -88.5067 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Illinois 38.7695 -88.5067 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plains, Montana 47.4602 -114.8842 matched with DB +City: Plains, state: Pennsylvania, Lat: 41.2657, Lng: -75.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toledo, Illinois 39.2728 -88.2419 matched with DB +City: Toledo, state: Ohio, Lat: 41.6638, Lng: -83.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Michigan 42.1762 -84.6456 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Michigan 42.1762 -84.6456 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Michigan 42.1762 -84.6456 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Michigan 42.1762 -84.6456 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Michigan 42.1762 -84.6456 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Michigan 42.1762 -84.6456 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Virginia 36.6254 -81.1511 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Virginia 36.6254 -81.1511 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Virginia 36.6254 -81.1511 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Virginia 36.6254 -81.1511 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Texas 32.2687 -94.9296 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgan Hill, Pennsylvania 40.6665 -75.2041 matched with DB +City: Morgan Hill, state: California, Lat: 37.1325, Lng: -121.6419, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Wisconsin 42.6485 -88.3599 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Oregon 44.7777 -122.6098 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Kentucky 36.6663 -88.9938 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Ohio 40.6530 -81.2928 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenville, West Virginia 38.9379 -80.8340 matched with DB +City: Glenville, state: New York, Lat: 42.8869, Lng: -73.9925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, Oklahoma 36.5699 -96.7080 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Ohio 40.9284 -81.6304 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Illinois 39.8886 -90.0078 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Illinois 39.8886 -90.0078 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Illinois 39.8886 -90.0078 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Illinois 39.8886 -90.0078 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Illinois 39.8886 -90.0078 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Illinois 39.8886 -90.0078 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ipswich, South Dakota 45.4435 -99.0300 matched with DB +City: Ipswich, state: Massachusetts, Lat: 42.6857, Lng: -70.8399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Nebraska 40.2843 -100.1653 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Nebraska 40.2843 -100.1653 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Nebraska 40.2843 -100.1653 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Nebraska 40.2843 -100.1653 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Kansas 39.0732 -95.3866 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, Minnesota 44.5283 -94.7231 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Tennessee 36.2349 -88.8252 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Tennessee 36.2349 -88.8252 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Shore, Minnesota 46.5040 -94.3635 matched with DB +City: Lake Shore, state: Maryland, Lat: 39.103, Lng: -76.4876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Washington 47.9731 -122.3577 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pomona, Kansas 38.6108 -95.4529 matched with DB +City: Pomona, state: New Jersey, Lat: 39.4688, Lng: -74.5502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pomona, Kansas 38.6108 -95.4529 matched with DB +City: Pomona, state: California, Lat: 34.0585, Lng: -117.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Pennsylvania 40.4923 -80.2970 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, South Dakota 43.7229 -97.3893 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Dakota 43.7229 -97.3893 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Dakota 43.7229 -97.3893 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Dakota 43.7229 -97.3893 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Dakota 43.7229 -97.3893 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Dakota 43.7229 -97.3893 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesapeake, Ohio 38.4298 -82.4489 matched with DB +City: Chesapeake, state: Virginia, Lat: 36.6778, Lng: -76.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Oklahoma 34.0960 -96.7996 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Oklahoma 34.0960 -96.7996 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Oklahoma 34.0960 -96.7996 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Crosse, Kansas 38.5318 -99.3095 matched with DB +City: La Crosse, state: Wisconsin, Lat: 43.8241, Lng: -91.2268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamstown, Pennsylvania 40.5809 -76.6170 matched with DB +City: Williamstown, state: New Jersey, Lat: 39.6874, Lng: -74.9786, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springville, Iowa 42.0470 -91.4542 matched with DB +City: Springville, state: Utah, Lat: 40.1638, Lng: -111.6205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Tennessee 36.0791 -86.0382 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Tennessee 36.0791 -86.0382 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Tennessee 36.0791 -86.0382 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Tennessee 36.0791 -86.0382 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, South Carolina 34.7244 -81.6844 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, South Carolina 34.7244 -81.6844 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Missouri 37.9953 -92.0956 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Missouri 37.9953 -92.0956 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookside, Alabama 33.6372 -86.9002 matched with DB +City: Brookside, state: Delaware, Lat: 39.6665, Lng: -75.7152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leland, Illinois 41.6160 -88.7982 matched with DB +City: Leland, state: North Carolina, Lat: 34.2042, Lng: -78.0279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Illinois 41.5368 -88.5803 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Illinois 41.5368 -88.5803 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Illinois 41.5368 -88.5803 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Illinois 41.5368 -88.5803 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Illinois 41.5368 -88.5803 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, West Virginia 39.2422 -81.6679 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wooster, Arkansas 35.1998 -92.4503 matched with DB +City: Wooster, state: Ohio, Lat: 40.8172, Lng: -81.9336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Mississippi 33.1163 -90.0498 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Mississippi 33.1163 -90.0498 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Mississippi 33.1163 -90.0498 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Mississippi 33.1163 -90.0498 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Mississippi 33.1163 -90.0498 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, North Dakota 46.8915 -97.0533 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, West Virginia 38.6108 -81.9817 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, West Virginia 38.6108 -81.9817 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, Minnesota 44.6105 -95.6721 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Michigan 42.8956 -82.7689 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Michigan 42.8956 -82.7689 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Park, California 36.7055 -119.8516 matched with DB +City: West Park, state: Florida, Lat: 25.984, Lng: -80.1923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayland, Iowa 41.1484 -91.6575 matched with DB +City: Wayland, state: Massachusetts, Lat: 42.3586, Lng: -71.3594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Michigan 41.8993 -83.7136 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milledgeville, Illinois 41.9636 -89.7747 matched with DB +City: Milledgeville, state: Georgia, Lat: 33.0874, Lng: -83.2414, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, West Virginia 37.4231 -81.0151 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, West Virginia 37.4231 -81.0151 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, West Virginia 37.4231 -81.0151 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, West Virginia 37.4231 -81.0151 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, West Virginia 37.4231 -81.0151 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Kentucky 38.8122 -84.6649 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Kentucky 38.8122 -84.6649 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Del Rio, California 37.7432 -121.0084 matched with DB +City: Del Rio, state: Texas, Lat: 29.3708, Lng: -100.8801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Delaware 39.7135 -75.6046 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Delaware 39.7135 -75.6046 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Delaware 39.7135 -75.6046 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroeville, Indiana 40.9735 -84.8675 matched with DB +City: Monroeville, state: Pennsylvania, Lat: 40.4262, Lng: -79.7605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Missouri 39.2278 -92.8393 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Missouri 39.2278 -92.8393 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Georgia 31.4383 -84.7253 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Georgia 31.4383 -84.7253 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Georgia 31.4383 -84.7253 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Georgia 31.4383 -84.7253 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Georgia 31.4383 -84.7253 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Louisiana 30.4993 -90.5839 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Louisiana 30.4993 -90.5839 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Louisiana 30.4993 -90.5839 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Louisiana 30.4993 -90.5839 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beloit, Ohio 40.9196 -80.9964 matched with DB +City: Beloit, state: Wisconsin, Lat: 42.523, Lng: -89.0184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highlands, North Carolina 35.0538 -83.1976 matched with DB +City: Highlands, state: New York, Lat: 41.3601, Lng: -74.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oskaloosa, Kansas 39.2158 -95.3145 matched with DB +City: Oskaloosa, state: Iowa, Lat: 41.2922, Lng: -92.6404, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newberry, Michigan 46.3538 -85.5098 matched with DB +City: Newberry, state: South Carolina, Lat: 34.2813, Lng: -81.601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newberry, Michigan 46.3538 -85.5098 matched with DB +City: Newberry, state: Pennsylvania, Lat: 40.1286, Lng: -76.7919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarence, Iowa 41.8858 -91.0581 matched with DB +City: Clarence, state: New York, Lat: 43.0196, Lng: -78.6375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Michigan 42.6411 -86.2083 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Michigan 42.6411 -86.2083 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Michigan 42.6411 -86.2083 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Wisconsin 42.7456 -89.5899 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Kentucky 37.5134 -87.6959 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Kentucky 37.5134 -87.6959 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Iowa 42.9648 -92.1965 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Iowa 42.9648 -92.1965 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Topeka, Indiana 41.5394 -85.5475 matched with DB +City: Topeka, state: Kansas, Lat: 39.0346, Lng: -95.6955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Nebraska 40.1036 -99.3657 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendon, Illinois 40.0892 -91.2858 matched with DB +City: Mendon, state: New York, Lat: 42.9859, Lng: -77.5479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edinburg, Illinois 39.6580 -89.3905 matched with DB +City: Edinburg, state: Texas, Lat: 26.3196, Lng: -98.1597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitehall, Montana 45.8709 -112.0976 matched with DB +City: Whitehall, state: Ohio, Lat: 39.9682, Lng: -82.8833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Whitehall, Montana 45.8709 -112.0976 matched with DB +City: Whitehall, state: Pennsylvania, Lat: 40.6571, Lng: -75.5046, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Virginia 36.9068 -82.3163 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, Pennsylvania 39.8021 -79.8089 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Pennsylvania 39.8021 -79.8089 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Pennsylvania 39.8021 -79.8089 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Pennsylvania 39.8021 -79.8089 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookdale, California 37.1057 -122.1106 matched with DB +City: Brookdale, state: New Jersey, Lat: 40.8348, Lng: -74.1798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mexico, Indiana 40.8143 -86.1113 matched with DB +City: Mexico, state: Missouri, Lat: 39.1625, Lng: -91.8712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Astoria, Illinois 40.2279 -90.3565 matched with DB +City: Astoria, state: Oregon, Lat: 46.1856, Lng: -123.8053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Pennsylvania 39.8606 -77.7015 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Pennsylvania 39.8606 -77.7015 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Pennsylvania 39.8606 -77.7015 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Pennsylvania 39.8606 -77.7015 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Pennsylvania 39.8606 -77.7015 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, West Virginia 40.2053 -80.5629 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, West Virginia 40.2053 -80.5629 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Van Buren, Missouri 37.0082 -91.0113 matched with DB +City: Van Buren, state: Arkansas, Lat: 35.4483, Lng: -94.3528, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Van Buren, Missouri 37.0082 -91.0113 matched with DB +City: Van Buren, state: New York, Lat: 43.1211, Lng: -76.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batesville, Texas 28.9552 -99.6237 matched with DB +City: Batesville, state: Arkansas, Lat: 35.7687, Lng: -91.6227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Ohio 40.0819 -82.2761 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Ohio 40.0819 -82.2761 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Ohio 40.0819 -82.2761 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Ohio 40.0819 -82.2761 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Ohio 40.0819 -82.2761 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Ohio 40.0819 -82.2761 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, North Carolina 35.2902 -81.1449 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, North Carolina 35.2902 -81.1449 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, North Carolina 35.2902 -81.1449 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clay, California 38.3140 -121.1596 matched with DB +City: Clay, state: Alabama, Lat: 33.6951, Lng: -86.609, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clay, California 38.3140 -121.1596 matched with DB +City: Clay, state: New York, Lat: 43.1808, Lng: -76.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Republic, Washington 48.6483 -118.7333 matched with DB +City: Republic, state: Missouri, Lat: 37.1452, Lng: -93.4446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynn, Indiana 40.0488 -84.9424 matched with DB +City: Lynn, state: Massachusetts, Lat: 42.4781, Lng: -70.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colchester, Illinois 40.4256 -90.7922 matched with DB +City: Colchester, state: Vermont, Lat: 44.5545, Lng: -73.2168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sulphur Springs, Arkansas 34.1709 -92.1298 matched with DB +City: Sulphur Springs, state: Texas, Lat: 33.1421, Lng: -95.6122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodway, Washington 47.7904 -122.3851 matched with DB +City: Woodway, state: Texas, Lat: 31.4988, Lng: -97.2314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Virginia 37.3426 -78.9862 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Virginia 37.3426 -78.9862 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Virginia 37.3426 -78.9862 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Virginia 37.3426 -78.9862 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Virginia 37.3426 -78.9862 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Virginia 37.3426 -78.9862 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Minnesota 44.1258 -92.2478 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Minnesota 44.1258 -92.2478 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Nebraska 40.8953 -97.3455 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Illinois 39.4389 -88.5953 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Illinois 39.4389 -88.5953 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Illinois 39.4389 -88.5953 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, California 40.3049 -121.0036 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, California 40.3049 -121.0036 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, California 40.3049 -121.0036 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, Wyoming 41.2724 -110.3342 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: London, Arkansas 35.3280 -93.2416 matched with DB +City: London, state: Ohio, Lat: 39.8935, Lng: -83.4375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andrews, Indiana 40.8604 -85.6023 matched with DB +City: Andrews, state: Texas, Lat: 32.3207, Lng: -102.552, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, South Dakota 43.3978 -97.1334 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, South Dakota 43.3978 -97.1334 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmersville, Pennsylvania 40.1291 -76.1551 matched with DB +City: Farmersville, state: California, Lat: 36.305, Lng: -119.2083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Wisconsin 44.6743 -88.8903 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Wisconsin 44.6743 -88.8903 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Wisconsin 44.6743 -88.8903 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Wisconsin 44.6743 -88.8903 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Wisconsin 44.6743 -88.8903 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, Kansas 39.7519 -94.8890 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boston, Georgia 30.7920 -83.7899 matched with DB +City: Boston, state: Massachusetts, Lat: 42.3188, Lng: -71.0852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northfield, Kentucky 38.2857 -85.6363 matched with DB +City: Northfield, state: Minnesota, Lat: 44.455, Lng: -93.1698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Kansas 39.8603 -95.2649 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Kansas 39.8603 -95.2649 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Kansas 39.8603 -95.2649 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Kansas 39.8603 -95.2649 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Wisconsin 43.8526 -89.1305 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Wisconsin 43.8526 -89.1305 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Wisconsin 43.8526 -89.1305 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Kansas 37.1875 -95.2898 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Colorado 39.7179 -105.6942 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Colorado 39.7179 -105.6942 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Colorado 39.7179 -105.6942 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, Michigan 44.6361 -86.2332 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Michigan 44.6361 -86.2332 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Michigan 44.6361 -86.2332 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Michigan 42.0866 -85.2356 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Michigan 42.0866 -85.2356 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Michigan 42.0866 -85.2356 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Michigan 42.0866 -85.2356 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Michigan 42.0866 -85.2356 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Maryland 39.6272 -78.8050 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Maryland 39.6272 -78.8050 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Wisconsin 42.7069 -89.4367 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Wisconsin 42.7069 -89.4367 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Wisconsin 42.7069 -89.4367 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Wisconsin 42.7069 -89.4367 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Missouri 39.5844 -91.3987 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granger, Texas 30.7180 -97.4411 matched with DB +City: Granger, state: Indiana, Lat: 41.7374, Lng: -86.1348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Indiana 40.3752 -86.7739 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Indiana 40.3752 -86.7739 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Indiana 40.3752 -86.7739 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millington, Michigan 43.2784 -83.5273 matched with DB +City: Millington, state: Tennessee, Lat: 35.335, Lng: -89.8991, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensburg, Louisiana 30.8300 -90.6698 matched with DB +City: Greensburg, state: Pennsylvania, Lat: 40.3113, Lng: -79.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greensburg, Louisiana 30.8300 -90.6698 matched with DB +City: Greensburg, state: Indiana, Lat: 39.3518, Lng: -85.5028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hays, Montana 48.0104 -108.6607 matched with DB +City: Hays, state: Kansas, Lat: 38.8821, Lng: -99.3221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oil City, Louisiana 32.7454 -93.9758 matched with DB +City: Oil City, state: Pennsylvania, Lat: 41.4281, Lng: -79.7036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lovington, Illinois 39.7151 -88.6337 matched with DB +City: Lovington, state: New Mexico, Lat: 32.9128, Lng: -103.3276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindsay, Texas 33.6418 -97.2186 matched with DB +City: Lindsay, state: California, Lat: 36.2082, Lng: -119.0897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clermont, Georgia 34.4783 -83.7720 matched with DB +City: Clermont, state: Florida, Lat: 28.5325, Lng: -81.7208, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Iowa 41.4893 -91.5567 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Iowa 41.4893 -91.5567 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Iowa 41.4893 -91.5567 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Iowa 41.4893 -91.5567 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Georgia 33.0322 -84.7163 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Iowa 40.6063 -95.6546 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, North Carolina 35.2656 -82.1976 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Carolina 35.2656 -82.1976 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Carolina 35.2656 -82.1976 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Carolina 35.2656 -82.1976 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Carolina 35.2656 -82.1976 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seabrook, South Carolina 32.5227 -80.7479 matched with DB +City: Seabrook, state: Texas, Lat: 29.5751, Lng: -95.0235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seabrook, South Carolina 32.5227 -80.7479 matched with DB +City: Seabrook, state: Maryland, Lat: 38.9802, Lng: -76.8502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, Ohio 39.6522 -83.5550 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Lebanon, Oregon 44.5055 -122.8959 matched with DB +City: South Lebanon, state: Pennsylvania, Lat: 40.3058, Lng: -76.3708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisburg, Kentucky 36.9872 -86.9502 matched with DB +City: Lewisburg, state: Tennessee, Lat: 35.451, Lng: -86.7901, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rossville, Kansas 39.1358 -95.9496 matched with DB +City: Rossville, state: Maryland, Lat: 39.3572, Lng: -76.4767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, Indiana 39.6738 -85.7052 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, Indiana 39.6738 -85.7052 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cairo, Nebraska 41.0046 -98.6007 matched with DB +City: Cairo, state: Georgia, Lat: 30.879, Lng: -84.205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, New Mexico 34.4184 -107.5125 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, New Mexico 34.4184 -107.5125 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macon, Illinois 39.7117 -88.9965 matched with DB +City: Macon, state: Georgia, Lat: 32.8065, Lng: -83.6974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clay, Kentucky 37.4763 -87.8202 matched with DB +City: Clay, state: Alabama, Lat: 33.6951, Lng: -86.609, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clay, Kentucky 37.4763 -87.8202 matched with DB +City: Clay, state: New York, Lat: 43.1808, Lng: -76.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, Ohio 41.3010 -83.4717 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, Ohio 41.3010 -83.4717 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Idaho 43.1965 -112.4356 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Idaho 43.1965 -112.4356 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Idaho 43.1965 -112.4356 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Idaho 43.1965 -112.4356 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Kentucky 37.9851 -85.9556 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Kentucky 37.9851 -85.9556 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Craig, Alaska 55.4918 -133.1165 matched with DB +City: Craig, state: Colorado, Lat: 40.5171, Lng: -107.5554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Ohio 39.3966 -81.2247 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Ohio 39.3966 -81.2247 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Ohio 39.3966 -81.2247 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Missouri 38.6858 -90.2869 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood Park, Tennessee 35.6481 -86.1357 matched with DB +City: Lakewood Park, state: Florida, Lat: 27.539, Lng: -80.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greene, Rhode Island 41.6988 -71.7339 matched with DB +City: Greene, state: Pennsylvania, Lat: 39.9543, Lng: -77.5668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plains, Texas 33.1883 -102.8214 matched with DB +City: Plains, state: Pennsylvania, Lat: 41.2657, Lng: -75.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rincón, Puerto Rico 18.1500 -66.1569 matched with DB +City: Rincon, state: Georgia, Lat: 32.2947, Lng: -81.2353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andalusia, Illinois 41.4372 -90.7165 matched with DB +City: Andalusia, state: Alabama, Lat: 31.3102, Lng: -86.4781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Tennessee 35.7999 -83.8685 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Tennessee 35.7999 -83.8685 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, New Jersey 39.6969 -75.3561 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamont, Michigan 43.0125 -85.9061 matched with DB +City: Lamont, state: California, Lat: 35.2659, Lng: -118.9159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Iowa 41.1259 -91.4381 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Iowa 41.1259 -91.4381 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Indiana 38.6655 -87.0493 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Indiana 38.6655 -87.0493 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Indiana 38.6655 -87.0493 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Indiana 38.6655 -87.0493 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Indiana 38.6655 -87.0493 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Indiana 38.6655 -87.0493 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Janesville, Iowa 42.6462 -92.4626 matched with DB +City: Janesville, state: Wisconsin, Lat: 42.6854, Lng: -89.0135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Indiana 39.9286 -86.6260 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Indiana 39.9286 -86.6260 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Indiana 41.0388 -86.0249 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Racine, Ohio 38.9683 -81.9109 matched with DB +City: Racine, state: Wisconsin, Lat: 42.7274, Lng: -87.8135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wells, Nevada 41.1132 -114.9535 matched with DB +City: Wells, state: Maine, Lat: 43.3267, Lng: -70.6336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Franklin, Missouri 39.0175 -92.7406 matched with DB +City: New Franklin, state: Ohio, Lat: 40.9525, Lng: -81.5838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvard, Nebraska 40.6201 -98.0961 matched with DB +City: Harvard, state: Illinois, Lat: 42.4296, Lng: -88.6211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Oregon 45.2284 -122.7573 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Oregon 45.2284 -122.7573 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Oregon 45.2284 -122.7573 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Oregon 45.2284 -122.7573 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Algonquin, Maryland 38.5843 -76.0965 matched with DB +City: Algonquin, state: Illinois, Lat: 42.1629, Lng: -88.3159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, Iowa 43.3602 -91.2256 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Iowa 43.3602 -91.2256 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Iowa 43.3602 -91.2256 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Iowa 43.3602 -91.2256 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thompson, North Dakota 47.7752 -97.1054 matched with DB +City: Thompson, state: New York, Lat: 41.6474, Lng: -74.6745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Philadelphia, Pennsylvania 40.7178 -76.1167 matched with DB +City: New Philadelphia, state: Ohio, Lat: 40.486, Lng: -81.4401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Pennsylvania 40.6648 -78.7093 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Pennsylvania 40.6648 -78.7093 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Pennsylvania 40.6648 -78.7093 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Kentucky 37.1952 -86.2691 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Kentucky 37.1952 -86.2691 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Kentucky 37.1952 -86.2691 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, New Mexico 36.1886 -105.8784 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, New Mexico 36.1886 -105.8784 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Virginia 36.6764 -78.8943 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Virginia 36.6764 -78.8943 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Virginia 36.6764 -78.8943 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Montana 46.6345 -114.0813 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Montana 46.6345 -114.0813 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Montana 46.6345 -114.0813 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Montana 46.6345 -114.0813 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Montana 46.6345 -114.0813 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Montana 46.6345 -114.0813 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Alabama 33.2619 -88.0951 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Alabama 33.2619 -88.0951 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Wisconsin 44.7655 -90.5989 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Wisconsin 44.7655 -90.5989 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Wisconsin 44.7655 -90.5989 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Wisconsin 44.7655 -90.5989 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tyler, Minnesota 44.2785 -96.1359 matched with DB +City: Tyler, state: Texas, Lat: 32.3184, Lng: -95.3062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danvers, Illinois 40.5300 -89.1751 matched with DB +City: Danvers, state: Massachusetts, Lat: 42.574, Lng: -70.9494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somers, Montana 48.0824 -114.2344 matched with DB +City: Somers, state: New York, Lat: 41.3056, Lng: -73.7252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Kentucky 38.4026 -85.5823 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Kentucky 38.4026 -85.5823 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, New Jersey 40.2212 -74.4730 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sand Springs, Texas 32.2795 -101.3496 matched with DB +City: Sand Springs, state: Oklahoma, Lat: 36.1353, Lng: -96.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baxter, Iowa 41.8252 -93.1525 matched with DB +City: Baxter, state: Minnesota, Lat: 46.3426, Lng: -94.2793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winthrop, Iowa 42.4708 -91.7375 matched with DB +City: Winthrop, state: Massachusetts, Lat: 42.3761, Lng: -70.9846, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden Grove, Florida 28.4716 -82.4349 matched with DB +City: Garden Grove, state: California, Lat: 33.7787, Lng: -117.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Nebraska 42.3775 -97.3578 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Nebraska 42.3775 -97.3578 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Rapids, Ohio 41.4078 -83.8680 matched with DB +City: Grand Rapids, state: Michigan, Lat: 42.9619, Lng: -85.6562, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grand Rapids, Ohio 41.4078 -83.8680 matched with DB +City: Grand Rapids, state: Minnesota, Lat: 47.238, Lng: -93.5327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Penn, Pennsylvania 40.3293 -79.6420 matched with DB +City: Penn, state: Pennsylvania, Lat: 39.7994, Lng: -76.9642, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Penn, Pennsylvania 40.3293 -79.6420 matched with DB +City: Penn, state: Pennsylvania, Lat: 40.1864, Lng: -76.3726, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Texas 32.1214 -96.9498 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Texas 32.1214 -96.9498 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Texas 32.1214 -96.9498 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Texas 32.1214 -96.9498 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Michigan 43.8971 -85.8531 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Michigan 43.8971 -85.8531 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allentown, Florida 30.7745 -87.0822 matched with DB +City: Allentown, state: Pennsylvania, Lat: 40.5961, Lng: -75.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Maryland 38.9666 -77.0963 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Maryland 38.9666 -77.0963 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Maryland 38.9666 -77.0963 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Americus, Kansas 38.5066 -96.2615 matched with DB +City: Americus, state: Georgia, Lat: 32.0736, Lng: -84.2248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Arkansas 35.5661 -90.0430 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Indiana 39.6892 -86.5234 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Indiana 39.6892 -86.5234 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Indiana 39.6892 -86.5234 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Indiana 39.6892 -86.5234 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Indiana 39.6892 -86.5234 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Kansas 38.8538 -99.1473 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Kansas 38.8538 -99.1473 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shirley, Indiana 39.8910 -85.5799 matched with DB +City: Shirley, state: New York, Lat: 40.7936, Lng: -72.8748, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Texas 29.5726 -98.1430 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Texas 29.5726 -98.1430 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Texas 29.5726 -98.1430 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Texas 29.5726 -98.1430 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Texas 29.5726 -98.1430 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission, Oregon 45.6586 -118.6655 matched with DB +City: Mission, state: Kansas, Lat: 39.027, Lng: -94.6568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mission, Oregon 45.6586 -118.6655 matched with DB +City: Mission, state: Texas, Lat: 26.2039, Lng: -98.3256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverdale, Pennsylvania 40.3473 -75.2718 matched with DB +City: Silverdale, state: Washington, Lat: 47.6663, Lng: -122.6828, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fostoria, Michigan 43.2492 -83.3720 matched with DB +City: Fostoria, state: Ohio, Lat: 41.16, Lng: -83.4121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmersville, Ohio 39.6787 -84.4275 matched with DB +City: Farmersville, state: California, Lat: 36.305, Lng: -119.2083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Illinois 39.3198 -89.5745 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawton, Iowa 42.4770 -96.1851 matched with DB +City: Lawton, state: Oklahoma, Lat: 34.6175, Lng: -98.4202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raleigh, Mississippi 32.0322 -89.5247 matched with DB +City: Raleigh, state: North Carolina, Lat: 35.8324, Lng: -78.6429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawford, Georgia 33.8831 -83.1551 matched with DB +City: Crawford, state: New York, Lat: 41.5685, Lng: -74.3169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, Nevada 37.3771 -115.1678 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, Nevada 37.3771 -115.1678 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Texas 30.8408 -97.7921 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Texas 30.8408 -97.7921 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Texas 30.8408 -97.7921 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Texas 30.8408 -97.7921 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Texas 30.8408 -97.7921 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Texas 30.8408 -97.7921 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Kansas 39.8160 -97.0487 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springville, Virginia 37.1940 -81.3999 matched with DB +City: Springville, state: Utah, Lat: 40.1638, Lng: -111.6205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington Heights, Ohio 39.2154 -84.4556 matched with DB +City: Arlington Heights, state: Illinois, Lat: 42.0955, Lng: -87.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Wisconsin 45.0349 -90.0792 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Wisconsin 45.0349 -90.0792 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Wisconsin 45.0349 -90.0792 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Wisconsin 45.0349 -90.0792 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Wisconsin 45.0349 -90.0792 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanson, Kentucky 37.4184 -87.4809 matched with DB +City: Hanson, state: Massachusetts, Lat: 42.0558, Lng: -70.8723, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Texas 34.0120 -102.4147 matched with DB +City: Amherst, state: Ohio, Lat: 41.4022, Lng: -82.2303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Texas 34.0120 -102.4147 matched with DB +City: Amherst, state: New Hampshire, Lat: 42.8706, Lng: -71.6068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Texas 34.0120 -102.4147 matched with DB +City: Amherst, state: New York, Lat: 43.0117, Lng: -78.757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Kentucky 37.9122 -85.3140 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Oklahoma 35.9635 -94.9979 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Oklahoma 35.9635 -94.9979 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Rock, Minnesota 47.8667 -95.1060 matched with DB +City: Little Rock, state: Arkansas, Lat: 34.7256, Lng: -92.3577, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Arizona 36.9617 -112.5195 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Michigan 42.9834 -84.9456 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Plains, Kentucky 37.1707 -87.3801 matched with DB +City: White Plains, state: New York, Lat: 41.022, Lng: -73.7547, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainfield, Wisconsin 44.2175 -89.4969 matched with DB +City: Plainfield, state: New Jersey, Lat: 40.6154, Lng: -74.4157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Wisconsin 44.2175 -89.4969 matched with DB +City: Plainfield, state: Indiana, Lat: 39.6954, Lng: -86.3716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Wisconsin 44.2175 -89.4969 matched with DB +City: Plainfield, state: Illinois, Lat: 41.6207, Lng: -88.2253, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altus, Arkansas 35.4468 -93.7644 matched with DB +City: Altus, state: Oklahoma, Lat: 34.6565, Lng: -99.3061, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Maryland 38.2792 -75.6533 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Missouri 39.8859 -94.3634 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caldwell, Kansas 37.0350 -97.6089 matched with DB +City: Caldwell, state: New Jersey, Lat: 40.8389, Lng: -74.2776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Caldwell, Kansas 37.0350 -97.6089 matched with DB +City: Caldwell, state: Idaho, Lat: 43.6453, Lng: -116.6594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Michigan 42.2157 -86.0534 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Michigan 42.2157 -86.0534 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Michigan 42.2157 -86.0534 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Michigan 42.2157 -86.0534 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolivar, Ohio 40.6539 -81.4550 matched with DB +City: Bolivar, state: Missouri, Lat: 37.6059, Lng: -93.4175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carson City, Michigan 43.1815 -84.8462 matched with DB +City: Carson City, state: Nevada, Lat: 39.1511, Lng: -119.7476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bend, Ohio 39.1505 -84.7405 matched with DB +City: North Bend, state: Oregon, Lat: 43.4075, Lng: -124.2364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pembroke, Virginia 37.3219 -80.6365 matched with DB +City: Pembroke, state: Massachusetts, Lat: 42.0655, Lng: -70.8014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Montana 46.9530 -112.6693 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Montana 46.9530 -112.6693 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Montana 46.9530 -112.6693 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Montana 46.9530 -112.6693 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Pennsylvania 40.3040 -80.1220 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Pennsylvania 40.3040 -80.1220 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Pennsylvania 40.3040 -80.1220 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Pennsylvania 40.3040 -80.1220 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Alabama 34.1705 -86.3224 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Alabama 34.1705 -86.3224 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Alabama 34.1705 -86.3224 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, Pennsylvania 41.1205 -76.5253 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Nebraska 40.8161 -96.4329 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Springs, New Mexico 35.6188 -108.8345 matched with DB +City: Rock Springs, state: Wyoming, Lat: 41.5947, Lng: -109.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Branch, Michigan 43.2286 -83.1920 matched with DB +City: North Branch, state: Minnesota, Lat: 45.5137, Lng: -92.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Layton, New Jersey 41.2192 -74.8229 matched with DB +City: Layton, state: Utah, Lat: 41.077, Lng: -111.962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, South Dakota 43.1749 -101.7323 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Pennsylvania 40.2994 -79.8555 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Pennsylvania 40.2994 -79.8555 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Pennsylvania 40.2994 -79.8555 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Pennsylvania 40.2994 -79.8555 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, West Virginia 39.4778 -79.0466 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, North Carolina 34.7859 -78.3947 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, Colorado 39.5901 -105.9383 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wakefield, Kansas 39.2164 -97.0187 matched with DB +City: Wakefield, state: Massachusetts, Lat: 42.5035, Lng: -71.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wakefield, Kansas 39.2164 -97.0187 matched with DB +City: Wakefield, state: Virginia, Lat: 38.823, Lng: -77.2406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Iowa 41.4666 -90.7170 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Iowa 41.4666 -90.7170 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochelle, Georgia 31.9488 -83.4569 matched with DB +City: Rochelle, state: Illinois, Lat: 41.9197, Lng: -89.0629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveton, Texas 31.0572 -95.1268 matched with DB +City: Groveton, state: Virginia, Lat: 38.7605, Lng: -77.098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut, Iowa 41.4894 -95.2197 matched with DB +City: Walnut, state: California, Lat: 34.0334, Lng: -117.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powell, Alabama 34.5326 -85.8975 matched with DB +City: Powell, state: Ohio, Lat: 40.1689, Lng: -83.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Powell, Alabama 34.5326 -85.8975 matched with DB +City: Powell, state: Tennessee, Lat: 36.0358, Lng: -84.0296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Wisconsin 44.4475 -89.2832 matched with DB +City: Amherst, state: Ohio, Lat: 41.4022, Lng: -82.2303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Wisconsin 44.4475 -89.2832 matched with DB +City: Amherst, state: New Hampshire, Lat: 42.8706, Lng: -71.6068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Wisconsin 44.4475 -89.2832 matched with DB +City: Amherst, state: New York, Lat: 43.0117, Lng: -78.757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ansonia, Ohio 40.2141 -84.6344 matched with DB +City: Ansonia, state: Connecticut, Lat: 41.3443, Lng: -73.0689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodward, Iowa 41.8528 -93.9207 matched with DB +City: Woodward, state: Oklahoma, Lat: 36.4247, Lng: -99.4058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Texas 31.8252 -94.4932 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ames, Texas 30.0451 -94.7373 matched with DB +City: Ames, state: Iowa, Lat: 42.0256, Lng: -93.6217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loma Linda, Missouri 36.9858 -94.5922 matched with DB +City: Loma Linda, state: California, Lat: 34.045, Lng: -117.2498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Texas 33.0437 -96.5504 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Ohio 40.6912 -84.6497 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, Wisconsin 42.7379 -90.3346 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Wisconsin 42.7379 -90.3346 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Wisconsin 42.7379 -90.3346 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Wisconsin 42.7379 -90.3346 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cave Spring, Georgia 34.1081 -85.3388 matched with DB +City: Cave Spring, state: Virginia, Lat: 37.2254, Lng: -80.0072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madisonville, Louisiana 30.4003 -90.1653 matched with DB +City: Madisonville, state: Kentucky, Lat: 37.3409, Lng: -87.5034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, New York 40.9728 -72.5560 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, New York 40.9728 -72.5560 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, New York 40.9728 -72.5560 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, New York 40.9728 -72.5560 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Illinois 40.0250 -88.0721 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hooper, Nebraska 41.6116 -96.5487 matched with DB +City: Hooper, state: Utah, Lat: 41.1599, Lng: -112.2871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Park, Georgia 30.6851 -83.1873 matched with DB +City: Lake Park, state: Florida, Lat: 26.7998, Lng: -80.0681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Montana 47.8520 -104.0510 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Michigan 42.3762 -85.4553 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Michigan 42.3762 -85.4553 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Michigan 42.3762 -85.4553 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Michigan 42.3762 -85.4553 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Mississippi 32.1061 -90.6221 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howard, Colorado 38.4098 -105.8424 matched with DB +City: Howard, state: Wisconsin, Lat: 44.5703, Lng: -88.0928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Potomac Park, Maryland 39.6124 -78.8082 matched with DB +City: Potomac Park, state: California, Lat: 35.3636, Lng: -118.965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, Tennessee 35.8705 -88.3937 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, Tennessee 35.8705 -88.3937 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Texas 31.0033 -94.7936 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Texas 31.0033 -94.7936 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Texas 31.0033 -94.7936 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, Texas 33.1483 -95.9532 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Illinois 37.7979 -89.3364 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Illinois 37.7979 -89.3364 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Illinois 37.7979 -89.3364 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Illinois 37.7979 -89.3364 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Illinois 37.7979 -89.3364 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Illinois 37.7979 -89.3364 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweet Home, Arkansas 34.6707 -92.2465 matched with DB +City: Sweet Home, state: Oregon, Lat: 44.4023, Lng: -122.7028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Pennsylvania 39.8100 -79.5623 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Pennsylvania 39.8100 -79.5623 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Pennsylvania 39.8100 -79.5623 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Pennsylvania 39.8100 -79.5623 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Pennsylvania 39.8100 -79.5623 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Pennsylvania 39.8100 -79.5623 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Pennsylvania 40.3704 -78.6691 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Pennsylvania 40.3704 -78.6691 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, Georgia 32.6863 -83.3433 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollywood, Alabama 34.7195 -85.9641 matched with DB +City: Hollywood, state: Florida, Lat: 26.0293, Lng: -80.1679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Converse, Indiana 40.5769 -85.8803 matched with DB +City: Converse, state: Texas, Lat: 29.5091, Lng: -98.3084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Utah 41.6655 -111.1846 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Utah 41.6655 -111.1846 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oshkosh, Nebraska 41.4080 -102.3452 matched with DB +City: Oshkosh, state: Wisconsin, Lat: 44.0227, Lng: -88.5619, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middlesex, North Carolina 35.7894 -78.2047 matched with DB +City: Middlesex, state: New Jersey, Lat: 40.5744, Lng: -74.5011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitewater, Kansas 37.9636 -97.1460 matched with DB +City: Whitewater, state: Wisconsin, Lat: 42.8372, Lng: -88.7341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, South Carolina 34.9846 -81.8222 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, South Carolina 34.9846 -81.8222 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Mississippi 32.4491 -89.4889 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawford, Nebraska 42.6845 -103.4160 matched with DB +City: Crawford, state: New York, Lat: 41.5685, Lng: -74.3169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marblehead, Ohio 41.5236 -82.7285 matched with DB +City: Marblehead, state: Massachusetts, Lat: 42.4992, Lng: -70.8639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunnyside, Georgia 31.2406 -82.3411 matched with DB +City: Sunnyside, state: Washington, Lat: 46.3157, Lng: -120.0058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Indiana 39.8127 -85.2056 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Indiana 39.8127 -85.2056 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Indiana 39.8127 -85.2056 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savoy, Texas 33.5999 -96.3662 matched with DB +City: Savoy, state: Illinois, Lat: 40.06, Lng: -88.2552, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrill, Iowa 42.7206 -96.2519 matched with DB +City: Merrill, state: Wisconsin, Lat: 45.182, Lng: -89.6994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, North Carolina 36.3250 -76.1700 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, North Carolina 36.3250 -76.1700 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkville, Ohio 40.1528 -80.7079 matched with DB +City: Yorkville, state: Illinois, Lat: 41.6563, Lng: -88.4507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendall, Washington 48.9156 -122.1336 matched with DB +City: Kendall, state: Florida, Lat: 25.6697, Lng: -80.3556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, South Carolina 33.9868 -80.4972 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, South Carolina 33.9868 -80.4972 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, South Carolina 33.9868 -80.4972 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Nebraska 40.7800 -97.8117 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Nebraska 40.7800 -97.8117 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Nebraska 40.7800 -97.8117 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Nebraska 40.7800 -97.8117 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsport, Ohio 39.5824 -83.1206 matched with DB +City: Williamsport, state: Pennsylvania, Lat: 41.2399, Lng: -77.037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Minnesota 44.5278 -93.9091 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Minnesota 44.5278 -93.9091 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Minnesota 44.5278 -93.9091 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Minnesota 44.5278 -93.9091 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amity, Arkansas 34.2662 -93.4634 matched with DB +City: Amity, state: Pennsylvania, Lat: 40.2905, Lng: -75.7477, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Nebraska 42.4301 -97.0986 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Nebraska 42.4301 -97.0986 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Nebraska 42.4301 -97.0986 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Nebraska 42.4301 -97.0986 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grantsville, Maryland 39.6969 -79.1528 matched with DB +City: Grantsville, state: Utah, Lat: 40.6148, Lng: -112.4777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellaire, Michigan 44.9739 -85.2057 matched with DB +City: Bellaire, state: Texas, Lat: 29.704, Lng: -95.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Michigan 42.3378 -85.3525 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Michigan 42.3378 -85.3525 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Michigan 42.3378 -85.3525 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex, Illinois 41.1819 -88.1926 matched with DB +City: Essex, state: Maryland, Lat: 39.3021, Lng: -76.4449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Essex, Illinois 41.1819 -88.1926 matched with DB +City: Essex, state: Vermont, Lat: 44.5196, Lng: -73.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, South Dakota 43.4236 -97.2605 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Dakota 43.4236 -97.2605 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Dakota 43.4236 -97.2605 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Dakota 43.4236 -97.2605 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, South Dakota 43.4236 -97.2605 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palo Alto, Pennsylvania 40.6861 -76.1699 matched with DB +City: Palo Alto, state: California, Lat: 37.3905, Lng: -122.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westphalia, Michigan 42.9303 -84.7981 matched with DB +City: Westphalia, state: Maryland, Lat: 38.8356, Lng: -76.8298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greene, Maine 44.1898 -70.1418 matched with DB +City: Greene, state: Pennsylvania, Lat: 39.9543, Lng: -77.5668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medford, Oklahoma 36.8035 -97.7378 matched with DB +City: Medford, state: Massachusetts, Lat: 42.4234, Lng: -71.1087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Oklahoma 36.8035 -97.7378 matched with DB +City: Medford, state: New York, Lat: 40.822, Lng: -72.9859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Oklahoma 36.8035 -97.7378 matched with DB +City: Medford, state: Oregon, Lat: 42.3372, Lng: -122.854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Medford, Oklahoma 36.8035 -97.7378 matched with DB +City: Medford, state: New Jersey, Lat: 39.8639, Lng: -74.8231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Iowa 40.7459 -95.6447 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Iowa 40.8599 -91.3145 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Iowa 40.8599 -91.3145 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Iowa 40.8599 -91.3145 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Iowa 40.8599 -91.3145 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Iowa 40.8599 -91.3145 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, North Carolina 36.1158 -79.2898 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, North Carolina 36.1158 -79.2898 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victor, Iowa 41.7306 -92.2949 matched with DB +City: Victor, state: New York, Lat: 42.9894, Lng: -77.4277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Exeter, Missouri 36.6707 -93.9399 matched with DB +City: Exeter, state: California, Lat: 36.2941, Lng: -119.1459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Missouri 36.6707 -93.9399 matched with DB +City: Exeter, state: New Hampshire, Lat: 42.9901, Lng: -70.9646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Missouri 36.6707 -93.9399 matched with DB +City: Exeter, state: Pennsylvania, Lat: 40.3139, Lng: -75.834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palestine, Indiana 41.1784 -85.9497 matched with DB +City: Palestine, state: Texas, Lat: 31.7544, Lng: -95.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Idaho 46.7380 -116.7731 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Idaho 46.7380 -116.7731 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Idaho 46.7380 -116.7731 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Idaho 46.7380 -116.7731 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Idaho 46.7380 -116.7731 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Idaho 46.7380 -116.7731 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, North Carolina 34.8960 -78.0541 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andrews, Florida 29.5496 -82.8883 matched with DB +City: Andrews, state: Texas, Lat: 32.3207, Lng: -102.552, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, Michigan 42.1054 -84.2487 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, Michigan 42.1054 -84.2487 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McLean, Texas 35.2324 -100.6001 matched with DB +City: McLean, state: Virginia, Lat: 38.9436, Lng: -77.1943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, Indiana 41.3307 -85.8490 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, Indiana 41.3307 -85.8490 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, Illinois 38.7631 -90.0816 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, New Mexico 35.3576 -103.4426 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, New Mexico 35.3576 -103.4426 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hesperia, Michigan 43.5691 -86.0407 matched with DB +City: Hesperia, state: California, Lat: 34.3975, Lng: -117.3147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Point, North Carolina 34.4441 -77.8909 matched with DB +City: Rocky Point, state: New York, Lat: 40.9357, Lng: -72.9364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Georgia 33.2797 -85.0985 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker, Minnesota 47.0906 -94.5885 matched with DB +City: Walker, state: Michigan, Lat: 42.9853, Lng: -85.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Bend, Iowa 42.9600 -94.4457 matched with DB +City: West Bend, state: Wisconsin, Lat: 43.4173, Lng: -88.1818, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarence, Missouri 39.7432 -92.2602 matched with DB +City: Clarence, state: New York, Lat: 43.0196, Lng: -78.6375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodridge, New York 41.7122 -74.5741 matched with DB +City: Woodridge, state: Illinois, Lat: 41.737, Lng: -88.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Van Buren, Indiana 40.6157 -85.5039 matched with DB +City: Van Buren, state: Arkansas, Lat: 35.4483, Lng: -94.3528, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Van Buren, Indiana 40.6157 -85.5039 matched with DB +City: Van Buren, state: New York, Lat: 43.1211, Lng: -76.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, North Carolina 35.5436 -77.9751 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, North Carolina 35.5436 -77.9751 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, North Carolina 35.5436 -77.9751 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Indiana 39.4283 -85.6287 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Indiana 38.3380 -85.6559 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Nebraska 41.2856 -96.2850 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Nebraska 41.2856 -96.2850 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Hill, New Mexico 36.9424 -107.8862 matched with DB +City: Cedar Hill, state: Texas, Lat: 32.581, Lng: -96.9591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgantown, Mississippi 31.5751 -91.3521 matched with DB +City: Morgantown, state: West Virginia, Lat: 39.6383, Lng: -79.9464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Alabama 33.1927 -86.3040 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Alabama 33.1927 -86.3040 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Alabama 33.1927 -86.3040 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Oklahoma 34.8776 -96.4129 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howard, South Dakota 44.0117 -97.5246 matched with DB +City: Howard, state: Wisconsin, Lat: 44.5703, Lng: -88.0928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hugo, Colorado 39.1362 -103.4731 matched with DB +City: Hugo, state: Minnesota, Lat: 45.1671, Lng: -92.9588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Napoleon, Michigan 42.1658 -84.2416 matched with DB +City: Napoleon, state: Ohio, Lat: 41.3977, Lng: -84.1244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutland, Ohio 39.0412 -82.1285 matched with DB +City: Rutland, state: Vermont, Lat: 43.6092, Lng: -72.9783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rutland, Ohio 39.0412 -82.1285 matched with DB +City: Rutland, state: Massachusetts, Lat: 42.3848, Lng: -71.9673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Maryland 39.1814 -76.9570 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Maryland 39.1814 -76.9570 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Maryland 39.1814 -76.9570 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Maryland 39.1814 -76.9570 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Virginia 38.1954 -78.9044 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Illinois 39.6574 -88.0275 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Illinois 39.6574 -88.0275 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Illinois 39.6574 -88.0275 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sullivan, Ohio 41.0280 -82.2212 matched with DB +City: Sullivan, state: New York, Lat: 43.0923, Lng: -75.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, South Dakota 43.2792 -101.9265 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, Illinois 40.7307 -90.6638 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Illinois 40.7307 -90.6638 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Illinois 40.7307 -90.6638 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, North Carolina 35.3774 -77.8923 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsville, Iowa 41.9056 -91.2536 matched with DB +City: Mechanicsville, state: Virginia, Lat: 37.6263, Lng: -77.3561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Iowa 42.1673 -95.7909 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Missouri 38.6788 -94.5980 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Missouri 38.6788 -94.5980 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Missouri 38.6788 -94.5980 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oregon, Missouri 39.9861 -95.1433 matched with DB +City: Oregon, state: Ohio, Lat: 41.6524, Lng: -83.4321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oregon, Missouri 39.9861 -95.1433 matched with DB +City: Oregon, state: Wisconsin, Lat: 42.9253, Lng: -89.3892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Arkansas 36.2090 -91.9183 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Arkansas 36.2090 -91.9183 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Arkansas 36.2090 -91.9183 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Arkansas 36.2090 -91.9183 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Arkansas 36.2090 -91.9183 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramsey, Illinois 39.1457 -89.1103 matched with DB +City: Ramsey, state: New Jersey, Lat: 41.0595, Lng: -74.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ramsey, Illinois 39.1457 -89.1103 matched with DB +City: Ramsey, state: Minnesota, Lat: 45.2617, Lng: -93.4494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, North Carolina 35.4716 -80.2586 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, North Carolina 35.4716 -80.2586 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roy, Washington 46.9970 -122.5423 matched with DB +City: Roy, state: Utah, Lat: 41.1714, Lng: -112.0485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Oregon 43.4371 -124.1961 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Oregon 43.4371 -124.1961 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, New Jersey 39.5731 -74.7148 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dyer, Arkansas 35.4944 -94.1388 matched with DB +City: Dyer, state: Indiana, Lat: 41.4977, Lng: -87.509, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield, Michigan 41.8901 -83.7790 matched with DB +City: Deerfield, state: Illinois, Lat: 42.1654, Lng: -87.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Kansas 38.1336 -96.1372 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Kansas 38.1336 -96.1372 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Kansas 38.1336 -96.1372 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Kansas 38.1336 -96.1372 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Kansas 38.1336 -96.1372 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Addison, West Virginia 38.4782 -80.4082 matched with DB +City: Addison, state: Illinois, Lat: 41.9313, Lng: -88.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Addison, West Virginia 38.4782 -80.4082 matched with DB +City: Addison, state: Texas, Lat: 32.959, Lng: -96.8355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Philadelphia, Tennessee 35.6791 -84.3999 matched with DB +City: Philadelphia, state: Pennsylvania, Lat: 40.0077, Lng: -75.1339, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Utah 40.4496 -112.3672 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Iowa 40.7145 -91.4527 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Iowa 40.7145 -91.4527 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bessemer, Pennsylvania 40.9756 -80.4878 matched with DB +City: Bessemer, state: Alabama, Lat: 33.3712, Lng: -86.9728, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, Minnesota 44.2239 -93.4445 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, Minnesota 44.2239 -93.4445 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Pennsylvania 41.3770 -79.7073 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Illinois 40.2125 -88.5084 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Illinois 40.2125 -88.5084 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Illinois 40.2125 -88.5084 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Illinois 40.2125 -88.5084 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gary, West Virginia 37.3619 -81.5415 matched with DB +City: Gary, state: Indiana, Lat: 41.5905, Lng: -87.3473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, South Dakota 45.7707 -99.6207 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, South Dakota 45.7707 -99.6207 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Kansas 37.7882 -97.1078 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal, Michigan 43.2642 -84.9276 matched with DB +City: Crystal, state: Minnesota, Lat: 45.0377, Lng: -93.3599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynn, Alabama 34.0548 -87.5555 matched with DB +City: Lynn, state: Massachusetts, Lat: 42.4781, Lng: -70.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Illinois 39.4432 -90.8730 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Illinois 39.4432 -90.8730 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Illinois 39.4432 -90.8730 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crofton, Nebraska 42.7315 -97.4986 matched with DB +City: Crofton, state: Maryland, Lat: 39.0144, Lng: -76.68, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex, Iowa 40.8327 -95.3038 matched with DB +City: Essex, state: Maryland, Lat: 39.3021, Lng: -76.4449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Essex, Iowa 40.8327 -95.3038 matched with DB +City: Essex, state: Vermont, Lat: 44.5196, Lng: -73.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knoxville, Pennsylvania 41.9605 -77.4379 matched with DB +City: Knoxville, state: Tennessee, Lat: 35.9692, Lng: -83.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrill, Oregon 42.0260 -121.6008 matched with DB +City: Merrill, state: Wisconsin, Lat: 45.182, Lng: -89.6994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Tennessee 35.4325 -85.7433 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edwards, Mississippi 32.3326 -90.6055 matched with DB +City: Edwards, state: Colorado, Lat: 39.6215, Lng: -106.6184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Iowa 41.2872 -93.8075 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Iowa 41.2872 -93.8075 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central, Utah 37.4150 -113.6262 matched with DB +City: Central, state: Louisiana, Lat: 30.5593, Lng: -91.0369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arnold, Nebraska 41.4231 -100.1936 matched with DB +City: Arnold, state: Maryland, Lat: 39.0437, Lng: -76.4974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arnold, Nebraska 41.4231 -100.1936 matched with DB +City: Arnold, state: Missouri, Lat: 38.4297, Lng: -90.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Utah 41.8612 -111.9909 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Utah 41.8612 -111.9909 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Utah 41.8612 -111.9909 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Utah 41.8612 -111.9909 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Wisconsin 42.5700 -90.3835 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pembroke, Kentucky 36.7752 -87.3580 matched with DB +City: Pembroke, state: Massachusetts, Lat: 42.0655, Lng: -70.8014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrill, Michigan 43.4091 -84.3345 matched with DB +City: Merrill, state: Wisconsin, Lat: 45.182, Lng: -89.6994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Utah 38.9202 -111.9335 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Utah 38.9202 -111.9335 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Utah 38.9202 -111.9335 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Utah 38.9202 -111.9335 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Florida 29.7145 -81.4990 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Florida 29.7145 -81.4990 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Florida 29.7145 -81.4990 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scranton, South Carolina 33.9174 -79.7441 matched with DB +City: Scranton, state: Pennsylvania, Lat: 41.4044, Lng: -75.6649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, West Virginia 39.6247 -78.2275 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, West Virginia 39.6247 -78.2275 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Iowa 43.0524 -92.9477 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pineville, Missouri 36.5756 -94.3916 matched with DB +City: Pineville, state: Louisiana, Lat: 31.3414, Lng: -92.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pineville, Missouri 36.5756 -94.3916 matched with DB +City: Pineville, state: North Carolina, Lat: 35.0864, Lng: -80.8915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Iowa 42.0862 -95.0432 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Iowa 42.0862 -95.0432 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, North Carolina 34.9070 -77.2324 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livermore, Kentucky 37.4919 -87.1343 matched with DB +City: Livermore, state: California, Lat: 37.6868, Lng: -121.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Minnesota 43.7583 -91.5706 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, Oregon 42.2797 -123.6151 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Oregon 42.2797 -123.6151 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Oregon 42.2797 -123.6151 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Wyoming 43.1646 -111.0200 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Wyoming 43.1646 -111.0200 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Falls, Maine 43.7312 -70.4301 matched with DB +City: Little Falls, state: Minnesota, Lat: 45.9862, Lng: -94.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Little Falls, Maine 43.7312 -70.4301 matched with DB +City: Little Falls, state: New Jersey, Lat: 40.8762, Lng: -74.2181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plantation, Kentucky 38.2834 -85.5936 matched with DB +City: Plantation, state: Florida, Lat: 26.1259, Lng: -80.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Texas 33.2116 -96.5635 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Kentucky 38.6075 -83.1833 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lenox, Georgia 31.2672 -83.4673 matched with DB +City: Lenox, state: New York, Lat: 43.1113, Lng: -75.7582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Grove, New Mexico 35.1788 -106.1728 matched with DB +City: Cedar Grove, state: New Jersey, Lat: 40.8565, Lng: -74.2288, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeville, Connecticut 41.9595 -73.4485 matched with DB +City: Lakeville, state: Minnesota, Lat: 44.6774, Lng: -93.252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeville, Connecticut 41.9595 -73.4485 matched with DB +City: Lakeville, state: Massachusetts, Lat: 41.831, Lng: -70.9594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Utah 41.3022 -111.8085 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Iowa 41.9001 -93.5360 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Iowa 41.9001 -93.5360 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Iowa 41.9001 -93.5360 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Iowa 41.9001 -93.5360 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victor, Montana 46.4161 -114.1492 matched with DB +City: Victor, state: New York, Lat: 42.9894, Lng: -77.4277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Montana 48.4614 -115.8909 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Montana 48.4614 -115.8909 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Montana 48.4614 -115.8909 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Montana 48.4614 -115.8909 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Montana 48.4614 -115.8909 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Montana 48.4614 -115.8909 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, North Carolina 36.4371 -77.2288 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, North Carolina 36.4371 -77.2288 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, North Carolina 36.4371 -77.2288 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, North Carolina 36.4371 -77.2288 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockport, Arkansas 34.4069 -92.8077 matched with DB +City: Rockport, state: Texas, Lat: 28.029, Lng: -97.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, Maine 44.9127 -68.6246 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Missouri 39.2072 -93.5186 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Missouri 39.2072 -93.5186 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Tennessee 35.3576 -85.5656 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Tennessee 35.3576 -85.5656 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dennis, Texas 32.6057 -97.9359 matched with DB +City: Dennis, state: Massachusetts, Lat: 41.7064, Lng: -70.1644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Iowa 41.6720 -90.3570 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Iowa 41.6720 -90.3570 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Iowa 41.6720 -90.3570 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburndale, Wisconsin 44.6266 -90.0144 matched with DB +City: Auburndale, state: Florida, Lat: 28.0963, Lng: -81.8012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Arkansas 33.3643 -93.5751 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Arkansas 33.3643 -93.5751 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Park, Oklahoma 35.5096 -97.4469 matched with DB +City: Forest Park, state: Ohio, Lat: 39.2861, Lng: -84.5258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Oklahoma 35.5096 -97.4469 matched with DB +City: Forest Park, state: Illinois, Lat: 41.8683, Lng: -87.8157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forest Park, Oklahoma 35.5096 -97.4469 matched with DB +City: Forest Park, state: Georgia, Lat: 33.6209, Lng: -84.359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Castle, Kentucky 38.4334 -85.1689 matched with DB +City: New Castle, state: Pennsylvania, Lat: 40.9956, Lng: -80.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Kentucky 38.4334 -85.1689 matched with DB +City: New Castle, state: Indiana, Lat: 39.9191, Lng: -85.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Kentucky 38.4334 -85.1689 matched with DB +City: New Castle, state: New York, Lat: 41.1841, Lng: -73.7721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Wisconsin 43.3351 -89.3726 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wisconsin 43.3351 -89.3726 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wisconsin 43.3351 -89.3726 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wisconsin 43.3351 -89.3726 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wisconsin 43.3351 -89.3726 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inwood, Iowa 43.3092 -96.4344 matched with DB +City: Inwood, state: New York, Lat: 40.6219, Lng: -73.7506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, Arizona 32.7344 -109.0972 matched with DB +City: Duncan, state: Oklahoma, Lat: 34.5408, Lng: -97.9215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Kentucky 37.2653 -88.2410 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Kentucky 37.2653 -88.2410 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Kentucky 37.2653 -88.2410 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Kentucky 37.2653 -88.2410 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Kentucky 37.2653 -88.2410 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Kentucky 37.2653 -88.2410 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Innsbrook, Missouri 38.7629 -91.0552 matched with DB +City: Innsbrook, state: Virginia, Lat: 37.6552, Lng: -77.5775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Missouri 38.5127 -92.4385 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Missouri 38.5127 -92.4385 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Louisiana 31.6677 -92.8877 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Louisiana 31.6677 -92.8877 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Louisiana 31.6677 -92.8877 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Louisiana 31.6677 -92.8877 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Louisiana 31.6677 -92.8877 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Louisiana 31.6677 -92.8877 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayden, Indiana 38.9714 -85.7390 matched with DB +City: Hayden, state: Idaho, Lat: 47.768, Lng: -116.804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Wisconsin 43.0475 -90.3801 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Wisconsin 43.0475 -90.3801 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Wisconsin 43.0475 -90.3801 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Wisconsin 43.0475 -90.3801 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Bedford, Pennsylvania 41.0955 -80.4953 matched with DB +City: New Bedford, state: Massachusetts, Lat: 41.6697, Lng: -70.9428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, California 38.2309 -121.4249 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy Springs, South Carolina 34.5974 -82.7493 matched with DB +City: Sandy Springs, state: Georgia, Lat: 33.9366, Lng: -84.3703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Kansas 37.2741 -97.1696 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Kansas 37.2741 -97.1696 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Kansas 37.2741 -97.1696 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Kansas 37.2741 -97.1696 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Kansas 37.2741 -97.1696 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frisco, Pennsylvania 40.8511 -80.2680 matched with DB +City: Frisco, state: Texas, Lat: 33.156, Lng: -96.8216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, Georgia 32.9849 -84.5819 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Georgia 32.9849 -84.5819 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Georgia 32.9849 -84.5819 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Georgia 32.9849 -84.5819 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Montana 47.1935 -114.8920 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Montana 47.1935 -114.8920 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Wyoming 44.8733 -107.2624 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Wyoming 44.8733 -107.2624 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Wyoming 44.8733 -107.2624 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Mississippi 31.1611 -90.8006 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Mississippi 31.1611 -90.8006 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, Michigan 44.8771 -84.3047 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Michigan 44.8771 -84.3047 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Michigan 44.8771 -84.3047 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midvale, Ohio 40.4358 -81.3700 matched with DB +City: Midvale, state: Utah, Lat: 40.6148, Lng: -111.8927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scranton, Kansas 38.7778 -95.7402 matched with DB +City: Scranton, state: Pennsylvania, Lat: 41.4044, Lng: -75.6649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, North Carolina 36.2580 -80.8904 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, North Carolina 36.2580 -80.8904 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, North Carolina 36.2580 -80.8904 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Michigan 43.2086 -85.0739 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenton, North Carolina 36.3995 -78.1575 matched with DB +City: Warrenton, state: Virginia, Lat: 38.7176, Lng: -77.7976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrenton, North Carolina 36.3995 -78.1575 matched with DB +City: Warrenton, state: Missouri, Lat: 38.8187, Lng: -91.1385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentone, Indiana 41.1740 -86.0382 matched with DB +City: Mentone, state: California, Lat: 34.0609, Lng: -117.1108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Montana 45.4588 -112.1946 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Arrowhead, Wisconsin 44.2036 -89.8377 matched with DB +City: Lake Arrowhead, state: California, Lat: 34.2531, Lng: -117.1944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Indiana 38.4891 -85.7679 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Indiana 38.4891 -85.7679 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, New York 42.2226 -78.0327 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, New York 42.2226 -78.0327 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, New York 42.2226 -78.0327 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, New York 42.2226 -78.0327 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Utah 39.9511 -111.9008 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Utah 39.9511 -111.9008 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walworth, New York 43.1396 -77.2793 matched with DB +City: Walworth, state: New York, Lat: 43.1633, Lng: -77.3131, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Nebraska 40.2530 -99.6323 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Nebraska 40.2530 -99.6323 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Nebraska 40.2530 -99.6323 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Nebraska 40.2530 -99.6323 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Nebraska 40.2530 -99.6323 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Missouri 37.1072 -92.4189 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Missouri 37.1072 -92.4189 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlingame, Kansas 38.7517 -95.8351 matched with DB +City: Burlingame, state: California, Lat: 37.5859, Lng: -122.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Ohio 39.7217 -82.2998 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sutton, West Virginia 38.6663 -80.7116 matched with DB +City: Sutton, state: Massachusetts, Lat: 42.1337, Lng: -71.7503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, Indiana 40.1889 -85.2753 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Indiana 40.1889 -85.2753 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Indiana 40.1889 -85.2753 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Kentucky 38.2968 -85.6108 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Kentucky 38.2968 -85.6108 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Kentucky 38.2968 -85.6108 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hoboken, Georgia 31.1813 -82.1313 matched with DB +City: Hoboken, state: New Jersey, Lat: 40.7452, Lng: -74.0281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockbridge, Wisconsin 44.0717 -88.3104 matched with DB +City: Stockbridge, state: Georgia, Lat: 33.5254, Lng: -84.2295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaumont, Mississippi 31.1707 -88.9252 matched with DB +City: Beaumont, state: California, Lat: 33.9076, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beaumont, Mississippi 31.1707 -88.9252 matched with DB +City: Beaumont, state: Texas, Lat: 30.0849, Lng: -94.1451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brunswick, Missouri 39.4256 -93.1266 matched with DB +City: Brunswick, state: Ohio, Lat: 41.2465, Lng: -81.8198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Missouri 39.4256 -93.1266 matched with DB +City: Brunswick, state: Georgia, Lat: 31.1449, Lng: -81.4746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Missouri 39.4256 -93.1266 matched with DB +City: Brunswick, state: Maine, Lat: 43.9007, Lng: -69.9761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Missouri 39.4256 -93.1266 matched with DB +City: Brunswick, state: New York, Lat: 42.7558, Lng: -73.5903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Idaho 42.0124 -111.8036 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgecrest, Louisiana 31.6018 -91.5304 matched with DB +City: Ridgecrest, state: California, Lat: 35.6308, Lng: -117.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hingham, Wisconsin 43.6465 -87.9151 matched with DB +City: Hingham, state: Massachusetts, Lat: 42.2176, Lng: -70.8854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Billings, Missouri 37.0641 -93.5551 matched with DB +City: Billings, state: Montana, Lat: 45.7891, Lng: -108.5526, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheatfield, Indiana 41.1911 -87.0531 matched with DB +City: Wheatfield, state: New York, Lat: 43.0975, Lng: -78.8831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oregon 44.3168 -123.2989 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawford, Texas 31.5382 -97.4465 matched with DB +City: Crawford, state: New York, Lat: 41.5685, Lng: -74.3169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarence, Pennsylvania 41.0466 -77.9507 matched with DB +City: Clarence, state: New York, Lat: 43.0196, Lng: -78.6375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coolidge, Texas 31.7514 -96.6523 matched with DB +City: Coolidge, state: Arizona, Lat: 32.9363, Lng: -111.5254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, California 36.8275 -118.2132 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, California 36.8275 -118.2132 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, California 36.8275 -118.2132 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, California 36.8275 -118.2132 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Tennessee 36.2580 -83.1966 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Tennessee 36.2580 -83.1966 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Illinois 42.2553 -90.2737 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Illinois 42.2553 -90.2737 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Illinois 42.2553 -90.2737 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Illinois 42.2553 -90.2737 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Illinois 42.2553 -90.2737 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Illinois 42.2553 -90.2737 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Tennessee 35.8328 -83.9358 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, New York 43.2398 -75.8846 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, New York 43.2398 -75.8846 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, New York 43.2398 -75.8846 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Nebraska 42.5984 -97.6481 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Illinois 38.0889 -89.9322 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollister, North Carolina 36.2593 -77.9363 matched with DB +City: Hollister, state: California, Lat: 36.8555, Lng: -121.3986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, South Dakota 43.1165 -96.9596 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, South Dakota 43.1165 -96.9596 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Hill, Alabama 31.9859 -87.5872 matched with DB +City: Pine Hill, state: New Jersey, Lat: 39.7879, Lng: -74.9857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redmond, Utah 39.0057 -111.8670 matched with DB +City: Redmond, state: Washington, Lat: 47.6763, Lng: -122.1169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Redmond, Utah 39.0057 -111.8670 matched with DB +City: Redmond, state: Oregon, Lat: 44.2612, Lng: -121.181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belgrade, Minnesota 45.4506 -94.9998 matched with DB +City: Belgrade, state: Montana, Lat: 45.7789, Lng: -111.1736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, South Dakota 44.3635 -97.1338 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, South Dakota 44.3635 -97.1338 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, South Dakota 44.3635 -97.1338 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, South Dakota 44.3635 -97.1338 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, South Dakota 44.3635 -97.1338 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Jose, New Mexico 36.0367 -106.1004 matched with DB +City: San Jose, state: California, Lat: 37.3012, Lng: -121.848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Alabama 32.8895 -86.2150 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Ohio 39.2245 -82.1975 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Ohio 39.2245 -82.1975 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Ohio 39.2245 -82.1975 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Ohio 39.2245 -82.1975 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, New Mexico 32.7121 -107.2056 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Mexico 32.7121 -107.2056 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Mexico 32.7121 -107.2056 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Mexico 32.7121 -107.2056 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Mexico 32.7121 -107.2056 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, New Mexico 32.7121 -107.2056 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hewitt, Wisconsin 44.6425 -90.1048 matched with DB +City: Hewitt, state: Texas, Lat: 31.452, Lng: -97.196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Temple, Oklahoma 34.2730 -98.2350 matched with DB +City: Temple, state: Texas, Lat: 31.1068, Lng: -97.3891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alliance, North Carolina 35.1434 -76.8084 matched with DB +City: Alliance, state: Ohio, Lat: 40.9107, Lng: -81.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Wisconsin 43.7352 -88.7819 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Wisconsin 43.7352 -88.7819 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Wisconsin 43.7352 -88.7819 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, California 38.0365 -121.1846 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, California 38.0365 -121.1846 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Tennessee 35.0044 -85.6598 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, South Dakota 43.6541 -97.7798 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, South Dakota 43.6541 -97.7798 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, South Dakota 43.6541 -97.7798 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, South Dakota 43.6541 -97.7798 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveton, New Hampshire 44.6048 -71.5201 matched with DB +City: Groveton, state: Virginia, Lat: 38.7605, Lng: -77.098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raleigh, Florida 29.4479 -82.4680 matched with DB +City: Raleigh, state: North Carolina, Lat: 35.8324, Lng: -78.6429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Minnesota 43.9698 -92.1340 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Minnesota 43.9698 -92.1340 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Minnesota 43.9698 -92.1340 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Minnesota 43.9698 -92.1340 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Minnesota 43.9698 -92.1340 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, California 38.5360 -122.4679 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, California 38.5360 -122.4679 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gainesville, Missouri 36.6063 -92.4245 matched with DB +City: Gainesville, state: Virginia, Lat: 38.7931, Lng: -77.6347, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Missouri 36.6063 -92.4245 matched with DB +City: Gainesville, state: Georgia, Lat: 34.2902, Lng: -83.8294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Missouri 36.6063 -92.4245 matched with DB +City: Gainesville, state: Florida, Lat: 29.6804, Lng: -82.3459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Missouri 36.6063 -92.4245 matched with DB +City: Gainesville, state: Texas, Lat: 33.639, Lng: -97.1487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesterfield, Tennessee 35.6468 -88.2700 matched with DB +City: Chesterfield, state: Missouri, Lat: 38.6589, Lng: -90.5803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chesterfield, Tennessee 35.6468 -88.2700 matched with DB +City: Chesterfield, state: New Jersey, Lat: 40.1166, Lng: -74.6459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Alamos, California 34.7419 -120.2746 matched with DB +City: Los Alamos, state: New Mexico, Lat: 35.8927, Lng: -106.2862, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calhoun, Kentucky 37.5411 -87.2596 matched with DB +City: Calhoun, state: Georgia, Lat: 34.491, Lng: -84.9386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greendale, Missouri 38.6938 -90.3125 matched with DB +City: Greendale, state: Wisconsin, Lat: 42.9371, Lng: -88.0018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Missouri 37.3354 -94.3023 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Missouri 37.3354 -94.3023 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Tennessee 35.0611 -89.3893 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westbrook, Minnesota 44.0422 -95.4374 matched with DB +City: Westbrook, state: Maine, Lat: 43.6954, Lng: -70.3539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa María, Puerto Rico 18.2710 -65.6623 matched with DB +City: Santa Maria, state: California, Lat: 34.9333, Lng: -120.4431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alden, Iowa 42.5115 -93.3805 matched with DB +City: Alden, state: New York, Lat: 42.9114, Lng: -78.5211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Battle Creek, Iowa 42.3170 -95.6000 matched with DB +City: Battle Creek, state: Michigan, Lat: 42.2985, Lng: -85.2296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Utah 41.5683 -111.8334 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, South Carolina 34.6512 -80.3866 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, South Carolina 34.6512 -80.3866 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, South Carolina 34.6512 -80.3866 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wickliffe, Oklahoma 36.3120 -95.1074 matched with DB +City: Wickliffe, state: Ohio, Lat: 41.6072, Lng: -81.469, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferguson, Kentucky 37.0632 -84.5922 matched with DB +City: Ferguson, state: Missouri, Lat: 38.749, Lng: -90.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferguson, Kentucky 37.0632 -84.5922 matched with DB +City: Ferguson, state: Pennsylvania, Lat: 40.7432, Lng: -77.9403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Oregon 42.7381 -123.4294 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Oregon 42.7381 -123.4294 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Oregon 42.7381 -123.4294 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Texas 33.8710 -101.5974 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roslyn, Washington 47.2511 -121.0990 matched with DB +City: Roslyn, state: Pennsylvania, Lat: 40.1311, Lng: -75.1374, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Indiana 39.5570 -86.2714 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Indiana 39.5570 -86.2714 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Kansas 39.7846 -95.0937 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Kansas 39.7846 -95.0937 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Kansas 39.7846 -95.0937 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Kansas 39.7846 -95.0937 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Kansas 39.7846 -95.0937 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Kansas 39.7846 -95.0937 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, West Virginia 39.3787 -81.2634 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, West Virginia 39.3787 -81.2634 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, West Virginia 39.3787 -81.2634 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, West Virginia 39.3787 -81.2634 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Maryland 38.2447 -75.7828 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Maryland 38.2447 -75.7828 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Maryland 38.2447 -75.7828 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Maryland 38.2447 -75.7828 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Maryland 38.2447 -75.7828 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Iowa 42.2622 -94.0711 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Iowa 42.2622 -94.0711 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Iowa 42.2622 -94.0711 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mankato, Kansas 39.7871 -98.2083 matched with DB +City: Mankato, state: Minnesota, Lat: 44.1715, Lng: -93.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davis, West Virginia 39.1266 -79.4609 matched with DB +City: Davis, state: California, Lat: 38.5553, Lng: -121.737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Round Lake, New York 42.9376 -73.7958 matched with DB +City: Round Lake, state: Illinois, Lat: 42.3435, Lng: -88.1059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Minnesota 45.6626 -94.6888 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Minnesota 45.6626 -94.6888 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Minnesota 45.6626 -94.6888 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Minnesota 45.6626 -94.6888 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Potomac, Illinois 40.3067 -87.7977 matched with DB +City: Potomac, state: Maryland, Lat: 39.0141, Lng: -77.1943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Louisiana 30.6150 -92.0594 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White, Georgia 34.2823 -84.7481 matched with DB +City: White, state: Pennsylvania, Lat: 40.621, Lng: -79.1513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver City, North Carolina 34.9972 -79.2292 matched with DB +City: Silver City, state: New Mexico, Lat: 32.7783, Lng: -108.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, West Virginia 39.0181 -82.0316 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perryville, Kentucky 37.6494 -84.9513 matched with DB +City: Perryville, state: Missouri, Lat: 37.7263, Lng: -89.8759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Maryland 38.6850 -76.1702 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Maryland 38.6850 -76.1702 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Maryland 38.6850 -76.1702 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Maryland 38.6850 -76.1702 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Maryland 38.6850 -76.1702 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheyenne, Oklahoma 35.6109 -99.6763 matched with DB +City: Cheyenne, state: Wyoming, Lat: 41.135, Lng: -104.7902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grove City, Minnesota 45.1481 -94.6815 matched with DB +City: Grove City, state: Ohio, Lat: 39.8654, Lng: -83.069, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Illinois 42.3164 -90.2216 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valle Vista, Texas 26.3160 -98.6547 matched with DB +City: Valle Vista, state: California, Lat: 33.7436, Lng: -116.8871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Nebraska 41.9360 -96.4717 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, South Dakota 44.2351 -96.4794 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Plains, Alabama 33.7603 -85.6880 matched with DB +City: White Plains, state: New York, Lat: 41.022, Lng: -73.7547, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burnsville, Mississippi 34.8348 -88.3177 matched with DB +City: Burnsville, state: Minnesota, Lat: 44.7648, Lng: -93.2793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Pennsylvania 39.8081 -77.0053 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dunkirk, Ohio 40.7880 -83.6429 matched with DB +City: Dunkirk, state: New York, Lat: 42.4801, Lng: -79.3324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Arkansas 35.0193 -90.7317 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Arkansas 35.0193 -90.7317 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Arkansas 35.0193 -90.7317 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Arkansas 35.0193 -90.7317 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Arkansas 35.0193 -90.7317 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayne, Oklahoma 34.9170 -97.3166 matched with DB +City: Wayne, state: Michigan, Lat: 42.2774, Lng: -83.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wayne, Oklahoma 34.9170 -97.3166 matched with DB +City: Wayne, state: New Jersey, Lat: 40.9481, Lng: -74.2453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendon, Michigan 42.0089 -85.4544 matched with DB +City: Mendon, state: New York, Lat: 42.9859, Lng: -77.5479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Colorado 38.3840 -105.1710 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Iowa 41.2125 -92.4338 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Iowa 41.2125 -92.4338 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Iowa 41.2125 -92.4338 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Iowa 42.4694 -92.2297 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winona, Missouri 37.0042 -91.3270 matched with DB +City: Winona, state: Minnesota, Lat: 44.0505, Lng: -91.6684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Utah 39.9588 -112.1149 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Utah 39.9588 -112.1149 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Nebraska 40.0966 -98.9514 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Napoleon, North Dakota 46.5039 -99.7683 matched with DB +City: Napoleon, state: Ohio, Lat: 41.3977, Lng: -84.1244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, Louisiana 31.2524 -92.2099 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Alabama 34.9652 -87.3735 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Alabama 34.9652 -87.3735 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Alabama 34.9652 -87.3735 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Alabama 34.9652 -87.3735 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Alabama 34.9652 -87.3735 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Downey, Idaho 42.4288 -112.1233 matched with DB +City: Downey, state: California, Lat: 33.9379, Lng: -118.1311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, West Virginia 38.2109 -81.4218 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, West Virginia 38.2109 -81.4218 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Alabama 31.2968 -85.1103 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Alabama 31.2968 -85.1103 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Alabama 31.2968 -85.1103 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Alabama 31.2968 -85.1103 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Alabama 31.2968 -85.1103 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Alabama 31.2968 -85.1103 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, Pennsylvania 40.7814 -76.2449 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Pennsylvania 40.7814 -76.2449 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Pennsylvania 40.7814 -76.2449 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Pennsylvania 40.7814 -76.2449 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Indiana 38.9884 -87.0812 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Kansas 37.1867 -99.7697 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kansas 37.1867 -99.7697 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kansas 37.1867 -99.7697 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kansas 37.1867 -99.7697 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kansas 37.1867 -99.7697 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Kansas 37.1867 -99.7697 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield, Illinois 41.3580 -89.7391 matched with DB +City: Sheffield, state: Alabama, Lat: 34.757, Lng: -87.6977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Road, Washington 48.0677 -123.1276 matched with DB +City: River Road, state: Oregon, Lat: 44.0833, Lng: -123.132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, New Mexico 33.1158 -107.2951 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Alabama 33.1068 -86.5825 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tecumseh, Indiana 39.5654 -87.4326 matched with DB +City: Tecumseh, state: Michigan, Lat: 42.0066, Lng: -83.945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooksville, Mississippi 33.2367 -88.5781 matched with DB +City: Brooksville, state: Florida, Lat: 28.5404, Lng: -82.3903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Washington 47.3326 -118.6894 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leeds, Utah 37.2373 -113.3471 matched with DB +City: Leeds, state: Alabama, Lat: 33.5436, Lng: -86.5639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kinston, Alabama 31.2200 -86.1705 matched with DB +City: Kinston, state: North Carolina, Lat: 35.2747, Lng: -77.5939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, Oregon 43.2529 -123.4574 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Connecticut 41.2033 -73.3788 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Connecticut 41.2033 -73.3788 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Connecticut 41.2033 -73.3788 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valle Vista, New Mexico 35.5841 -106.0584 matched with DB +City: Valle Vista, state: California, Lat: 33.7436, Lng: -116.8871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Kansas 39.0152 -96.2871 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, Missouri 38.1874 -91.9501 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, Missouri 38.1874 -91.9501 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakley, Idaho 42.2417 -113.8824 matched with DB +City: Oakley, state: California, Lat: 37.9929, Lng: -121.6952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Texas 30.5256 -94.4456 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Texas 30.5256 -94.4456 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, California 40.5576 -122.1697 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Ohio 39.9168 -81.5205 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Ohio 39.9168 -81.5205 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberal, Missouri 37.5590 -94.5161 matched with DB +City: Liberal, state: Kansas, Lat: 37.0466, Lng: -100.9295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewater, Alabama 33.5287 -86.9572 matched with DB +City: Edgewater, state: New Jersey, Lat: 40.8237, Lng: -73.974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Alabama 33.5287 -86.9572 matched with DB +City: Edgewater, state: Florida, Lat: 28.9594, Lng: -80.9406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewater, Alabama 33.5287 -86.9572 matched with DB +City: Edgewater, state: Maryland, Lat: 38.9373, Lng: -76.5572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vineland, Minnesota 46.1832 -93.7822 matched with DB +City: Vineland, state: New Jersey, Lat: 39.4653, Lng: -74.9981, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marcy, New York 43.1373 -75.2680 matched with DB +City: Marcy, state: New York, Lat: 43.1731, Lng: -75.2662, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athol, Idaho 47.9469 -116.7079 matched with DB +City: Athol, state: Massachusetts, Lat: 42.5841, Lng: -72.2177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinewood, South Carolina 33.7396 -80.4620 matched with DB +City: Pinewood, state: Florida, Lat: 25.8697, Lng: -80.2174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Kentucky 37.6592 -85.5886 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Kentucky 37.6592 -85.5886 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green River, Utah 38.9935 -110.1723 matched with DB +City: Green River, state: Wyoming, Lat: 41.5127, Lng: -109.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melbourne, Iowa 41.9416 -93.1023 matched with DB +City: Melbourne, state: Florida, Lat: 28.1086, Lng: -80.6627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrenville, South Carolina 33.5461 -81.7990 matched with DB +City: Warrenville, state: Illinois, Lat: 41.8209, Lng: -88.1857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Tennessee 35.0331 -87.5007 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Ohio 41.7004 -84.0718 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dumont, Iowa 42.7522 -92.9736 matched with DB +City: Dumont, state: New Jersey, Lat: 40.9452, Lng: -73.9923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Ohio 40.4473 -82.2612 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Ohio 40.4473 -82.2612 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Ohio 40.4473 -82.2612 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Ohio 40.4473 -82.2612 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Ohio 40.4473 -82.2612 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chatham, Louisiana 32.3096 -92.4522 matched with DB +City: Chatham, state: New Jersey, Lat: 40.7274, Lng: -74.4289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chatham, Louisiana 32.3096 -92.4522 matched with DB +City: Chatham, state: Illinois, Lat: 39.6733, Lng: -89.6934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Missouri 37.0990 -89.5624 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Montana 45.5977 -106.2975 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Montana 45.5977 -106.2975 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Montana 45.5977 -106.2975 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Montana 45.5977 -106.2975 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Montana 45.5977 -106.2975 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Montana 45.5977 -106.2975 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plains, Georgia 32.0331 -84.3946 matched with DB +City: Plains, state: Pennsylvania, Lat: 41.2657, Lng: -75.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gadsden, Arizona 32.5564 -114.7811 matched with DB +City: Gadsden, state: Alabama, Lat: 34.0086, Lng: -86.0157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Kansas 38.9029 -97.1163 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Kansas 38.9029 -97.1163 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Arizona 35.8537 -111.4269 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newman, Illinois 39.7970 -87.9878 matched with DB +City: Newman, state: California, Lat: 37.3156, Lng: -121.0212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ringwood, Illinois 42.3973 -88.3040 matched with DB +City: Ringwood, state: New Jersey, Lat: 41.1065, Lng: -74.2749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Kansas 38.8255 -98.4750 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasantville, Pennsylvania 41.5935 -79.5808 matched with DB +City: Pleasantville, state: New Jersey, Lat: 39.39, Lng: -74.5169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McLean, Illinois 40.3136 -89.1686 matched with DB +City: McLean, state: Virginia, Lat: 38.9436, Lng: -77.1943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, California 38.4060 -120.5365 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, California 38.4060 -120.5365 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waco, Georgia 33.7026 -85.1893 matched with DB +City: Waco, state: Texas, Lat: 31.5599, Lng: -97.1882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Louisiana 31.9203 -91.2400 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Indiana 40.8880 -86.7374 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Indiana 40.8880 -86.7374 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coolidge, Georgia 31.0113 -83.8660 matched with DB +City: Coolidge, state: Arizona, Lat: 32.9363, Lng: -111.5254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsburg, Illinois 39.8021 -89.4067 matched with DB +City: Mechanicsburg, state: Pennsylvania, Lat: 40.2115, Lng: -77.006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Georgia 34.2319 -84.9444 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Georgia 34.2319 -84.9444 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Georgia 34.2319 -84.9444 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookfield, New Jersey 40.8163 -75.0645 matched with DB +City: Brookfield, state: Wisconsin, Lat: 43.064, Lng: -88.1231, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brookfield, New Jersey 40.8163 -75.0645 matched with DB +City: Brookfield, state: Illinois, Lat: 41.8245, Lng: -87.847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Minnesota 44.2576 -93.3771 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wells, Texas 31.4916 -94.9473 matched with DB +City: Wells, state: Maine, Lat: 43.3267, Lng: -70.6336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Montana 48.5113 -110.9663 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Montana 48.5113 -110.9663 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Kansas 37.5230 -94.6994 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Point, Oklahoma 36.0261 -95.3216 matched with DB +City: Rocky Point, state: New York, Lat: 40.9357, Lng: -72.9364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Indiana 40.2139 -86.0270 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Alabama 32.4513 -85.7864 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Valley, Illinois 40.4072 -89.6443 matched with DB +City: Green Valley, state: Arizona, Lat: 31.8393, Lng: -111.0009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Green Valley, Illinois 40.4072 -89.6443 matched with DB +City: Green Valley, state: Maryland, Lat: 39.3414, Lng: -77.24, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleton, Tennessee 35.0593 -88.8902 matched with DB +City: Middleton, state: Wisconsin, Lat: 43.1064, Lng: -89.5059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middleton, Tennessee 35.0593 -88.8902 matched with DB +City: Middleton, state: Idaho, Lat: 43.7113, Lng: -116.6157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middleton, Tennessee 35.0593 -88.8902 matched with DB +City: Middleton, state: Massachusetts, Lat: 42.6043, Lng: -71.0164, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Island, Oklahoma 35.1831 -94.4811 matched with DB +City: Rock Island, state: Illinois, Lat: 41.4699, Lng: -90.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden, Illinois 40.1104 -91.0193 matched with DB +City: Golden, state: Colorado, Lat: 39.7406, Lng: -105.2118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Illinois 38.9684 -89.7641 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Illinois 38.9684 -89.7641 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, Georgia 31.0680 -83.6232 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: King City, Missouri 40.0505 -94.5252 matched with DB +City: King City, state: California, Lat: 36.2164, Lng: -121.133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newtown, South Carolina 34.4013 -79.3566 matched with DB +City: Newtown, state: Pennsylvania, Lat: 39.992, Lng: -75.4106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colton, South Dakota 43.7871 -96.9280 matched with DB +City: Colton, state: California, Lat: 34.0538, Lng: -117.3255, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hurst, Illinois 37.8349 -89.1443 matched with DB +City: Hurst, state: Texas, Lat: 32.8353, Lng: -97.1809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasantville, Ohio 39.8098 -82.5223 matched with DB +City: Pleasantville, state: New Jersey, Lat: 39.39, Lng: -74.5169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palestine, Arkansas 34.9696 -90.9068 matched with DB +City: Palestine, state: Texas, Lat: 31.7544, Lng: -95.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Damascus, Virginia 36.6326 -81.7891 matched with DB +City: Damascus, state: Maryland, Lat: 39.2701, Lng: -77.1957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Damascus, Virginia 36.6326 -81.7891 matched with DB +City: Damascus, state: Oregon, Lat: 45.4233, Lng: -122.4436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mantua, Ohio 41.2820 -81.2223 matched with DB +City: Mantua, state: New Jersey, Lat: 39.7618, Lng: -75.1686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fillmore, Indiana 39.6697 -86.7532 matched with DB +City: Fillmore, state: California, Lat: 34.3989, Lng: -118.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Plains, North Carolina 36.4451 -80.6351 matched with DB +City: White Plains, state: New York, Lat: 41.022, Lng: -73.7547, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, New Jersey 40.8698 -74.8810 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, New Jersey 40.8698 -74.8810 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkway, Missouri 38.3361 -90.9712 matched with DB +City: Parkway, state: California, Lat: 38.4993, Lng: -121.452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Ohio 39.4722 -82.9121 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Ohio 39.4722 -82.9121 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Ohio 39.4722 -82.9121 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Minnesota 43.5654 -92.7190 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopkins, Michigan 42.6251 -85.7633 matched with DB +City: Hopkins, state: Minnesota, Lat: 44.9259, Lng: -93.4056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, Missouri 40.0471 -91.5024 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Missouri 40.0471 -91.5024 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Missouri 40.0471 -91.5024 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blooming Grove, Texas 32.0924 -96.7173 matched with DB +City: Blooming Grove, state: New York, Lat: 41.3948, Lng: -74.184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooksville, Kentucky 38.6818 -84.0665 matched with DB +City: Brooksville, state: Florida, Lat: 28.5404, Lng: -82.3903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Berlin, Texas 29.4892 -98.1094 matched with DB +City: New Berlin, state: Wisconsin, Lat: 42.9726, Lng: -88.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, Florida 30.5705 -84.7324 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winter Park, Colorado 39.8785 -105.7828 matched with DB +City: Winter Park, state: Florida, Lat: 28.5989, Lng: -81.3442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carson, Iowa 41.2356 -95.4199 matched with DB +City: Carson, state: California, Lat: 33.8374, Lng: -118.2559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pomfret, Maryland 38.5699 -77.0304 matched with DB +City: Pomfret, state: New York, Lat: 42.4029, Lng: -79.3534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Missouri 36.6901 -91.3947 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Missouri 36.6901 -91.3947 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Montana 47.6151 -111.9813 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Montana 47.6151 -111.9813 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Montana 47.6151 -111.9813 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Montana 47.6151 -111.9813 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hartford, Iowa 42.5682 -92.6214 matched with DB +City: New Hartford, state: New York, Lat: 43.0586, Lng: -75.2821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Idaho 42.4790 -111.3639 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Idaho 42.4790 -111.3639 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Idaho 42.4790 -111.3639 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Michigan 43.6777 -84.3803 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Michigan 43.6777 -84.3803 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Michigan 43.6777 -84.3803 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Ohio 39.2325 -84.1532 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Ohio 39.2325 -84.1532 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogden, Illinois 40.1150 -87.9563 matched with DB +City: Ogden, state: North Carolina, Lat: 34.2656, Lng: -77.7966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Illinois 40.1150 -87.9563 matched with DB +City: Ogden, state: Utah, Lat: 41.2279, Lng: -111.9682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Illinois 40.1150 -87.9563 matched with DB +City: Ogden, state: New York, Lat: 43.1646, Lng: -77.822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, Alabama 34.1839 -85.7750 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, Alabama 34.1839 -85.7750 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Indiana 39.7366 -85.5715 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillside, New York 41.9177 -74.0337 matched with DB +City: Hillside, state: New Jersey, Lat: 40.6961, Lng: -74.2286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Wisconsin 42.8931 -90.9264 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Wisconsin 42.8931 -90.9264 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Wisconsin 42.8931 -90.9264 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Wisconsin 42.8931 -90.9264 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Oklahoma 34.0609 -96.5925 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Oklahoma 34.0609 -96.5925 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, California 38.4937 -122.7734 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, California 38.4937 -122.7734 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryant, South Dakota 44.5899 -97.4673 matched with DB +City: Bryant, state: Arkansas, Lat: 34.6152, Lng: -92.4914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Louisiana 31.6788 -92.1493 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Rosa, Arizona 32.3325 -112.0464 matched with DB +City: Santa Rosa, state: California, Lat: 38.4458, Lng: -122.7067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Indiana 39.3955 -87.3001 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Indiana 39.3955 -87.3001 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Indiana 39.3955 -87.3001 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Indiana 39.3955 -87.3001 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Indiana 39.3955 -87.3001 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Happy Valley, Alaska 59.9137 -151.6072 matched with DB +City: Happy Valley, state: Oregon, Lat: 45.4358, Lng: -122.5081, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Minnesota 45.0184 -95.2367 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knoxville, Arkansas 35.3780 -93.3630 matched with DB +City: Knoxville, state: Tennessee, Lat: 35.9692, Lng: -83.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Michigan 43.8183 -83.1809 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crossville, Illinois 38.1626 -88.0643 matched with DB +City: Crossville, state: Tennessee, Lat: 35.9526, Lng: -85.0295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Montana 46.7718 -113.7169 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Wisconsin 44.3374 -91.9221 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atwater, Ohio 41.0258 -81.1600 matched with DB +City: Atwater, state: California, Lat: 37.3529, Lng: -120.5959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Minnesota 44.9122 -93.5550 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Minnesota 44.9122 -93.5550 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Minnesota 44.9122 -93.5550 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Minnesota 44.9122 -93.5550 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delano, Tennessee 35.2545 -84.5579 matched with DB +City: Delano, state: California, Lat: 35.7662, Lng: -119.2635, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Mississippi 34.0680 -88.3983 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Mississippi 34.0680 -88.3983 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, Kansas 39.6617 -99.5673 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, Kansas 39.6617 -99.5673 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Creek, West Virginia 38.7319 -79.9725 matched with DB +City: Mill Creek, state: Washington, Lat: 47.8631, Lng: -122.2037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Iowa 42.9553 -91.6354 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Iowa 42.9553 -91.6354 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Swansea, South Carolina 33.7397 -81.1052 matched with DB +City: Swansea, state: Illinois, Lat: 38.5507, Lng: -89.9858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Swansea, South Carolina 33.7397 -81.1052 matched with DB +City: Swansea, state: Massachusetts, Lat: 41.7571, Lng: -71.212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln Park, Georgia 32.8674 -84.3348 matched with DB +City: Lincoln Park, state: New Jersey, Lat: 40.9239, Lng: -74.3035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln Park, Georgia 32.8674 -84.3348 matched with DB +City: Lincoln Park, state: Michigan, Lat: 42.2432, Lng: -83.1811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Georgia 32.1805 -82.6709 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, Vermont 44.6427 -72.8282 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, Iowa 41.9995 -92.1982 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker, Iowa 42.2874 -91.7810 matched with DB +City: Walker, state: Michigan, Lat: 42.9853, Lng: -85.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsville, Ohio 41.8869 -80.6771 matched with DB +City: Kingsville, state: Texas, Lat: 27.5094, Lng: -97.861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Oklahoma 34.7494 -98.1725 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Oklahoma 34.7494 -98.1725 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Oklahoma 34.7494 -98.1725 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ennis, Montana 45.3462 -111.7319 matched with DB +City: Ennis, state: Texas, Lat: 32.3254, Lng: -96.6347, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, Texas 32.6478 -96.2596 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Texas 32.6478 -96.2596 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Texas 32.6478 -96.2596 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield, Kansas 37.9819 -101.1332 matched with DB +City: Deerfield, state: Illinois, Lat: 42.1654, Lng: -87.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, Kansas 39.6919 -96.7470 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Idaho 42.1873 -112.0046 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Idaho 42.1873 -112.0046 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkwood, Illinois 40.8678 -90.7483 matched with DB +City: Kirkwood, state: Missouri, Lat: 38.5788, Lng: -90.4203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Indiana 37.9370 -86.9842 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Indiana 37.9370 -86.9842 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Florida 30.5968 -83.1070 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Florida 30.5968 -83.1070 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant View, Pennsylvania 40.6090 -79.5759 matched with DB +City: Pleasant View, state: Utah, Lat: 41.3249, Lng: -112.0011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, Ohio 40.9517 -83.1709 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Kentucky 37.7732 -87.9318 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneida, Illinois 41.0722 -90.2247 matched with DB +City: Oneida, state: New York, Lat: 43.0769, Lng: -75.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warren, Texas 30.6127 -94.4105 matched with DB +City: Warren, state: Ohio, Lat: 41.239, Lng: -80.8174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Texas 30.6127 -94.4105 matched with DB +City: Warren, state: Michigan, Lat: 42.4934, Lng: -83.027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Texas 30.6127 -94.4105 matched with DB +City: Warren, state: Pennsylvania, Lat: 41.8434, Lng: -79.1444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Texas 30.6127 -94.4105 matched with DB +City: Warren, state: Rhode Island, Lat: 41.7282, Lng: -71.2629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warren, Texas 30.6127 -94.4105 matched with DB +City: Warren, state: New Jersey, Lat: 40.6323, Lng: -74.5146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Royal, Pennsylvania 40.5338 -77.3894 matched with DB +City: Port Royal, state: South Carolina, Lat: 32.3557, Lng: -80.7029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Kansas 37.0732 -94.7060 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Kansas 37.0732 -94.7060 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winslow, Indiana 38.3834 -87.2130 matched with DB +City: Winslow, state: Arizona, Lat: 35.0243, Lng: -110.7095, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winslow, Indiana 38.3834 -87.2130 matched with DB +City: Winslow, state: New Jersey, Lat: 39.7027, Lng: -74.9029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melville, Louisiana 30.6917 -91.7485 matched with DB +City: Melville, state: New York, Lat: 40.7824, Lng: -73.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patterson, Georgia 31.3853 -82.1373 matched with DB +City: Patterson, state: California, Lat: 37.4758, Lng: -121.1536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Patterson, Georgia 31.3853 -82.1373 matched with DB +City: Patterson, state: New York, Lat: 41.4849, Lng: -73.5921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minden, Iowa 41.4700 -95.5429 matched with DB +City: Minden, state: Louisiana, Lat: 32.6187, Lng: -93.2762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillcrest, Texas 29.3924 -95.2233 matched with DB +City: Hillcrest, state: California, Lat: 35.379, Lng: -118.9578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peru, Nebraska 40.4786 -95.7313 matched with DB +City: Peru, state: Illinois, Lat: 41.3482, Lng: -89.1371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peru, Nebraska 40.4786 -95.7313 matched with DB +City: Peru, state: Indiana, Lat: 40.7593, Lng: -86.0756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Idaho 42.2273 -111.4032 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Idaho 42.2273 -111.4032 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Idaho 42.2273 -111.4032 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wickliffe, Kentucky 36.9666 -89.0813 matched with DB +City: Wickliffe, state: Ohio, Lat: 41.6072, Lng: -81.469, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stafford, Kansas 37.9624 -98.5995 matched with DB +City: Stafford, state: Texas, Lat: 29.6271, Lng: -95.5654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stafford, Kansas 37.9624 -98.5995 matched with DB +City: Stafford, state: New Jersey, Lat: 39.7049, Lng: -74.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Wisconsin 43.6928 -88.3642 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartland, Michigan 42.6597 -83.7446 matched with DB +City: Hartland, state: Wisconsin, Lat: 43.1029, Lng: -88.3396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Minnesota 44.0271 -91.7697 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugar Grove, Virginia 36.7689 -81.4075 matched with DB +City: Sugar Grove, state: Illinois, Lat: 41.7759, Lng: -88.4481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redland, Texas 31.4033 -94.7182 matched with DB +City: Redland, state: Maryland, Lat: 39.1339, Lng: -77.1464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Missouri 37.5057 -92.8312 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Missouri 37.5057 -92.8312 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Missouri 37.5057 -92.8312 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Missouri 37.5057 -92.8312 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Michigan 42.9869 -84.1445 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl City, Illinois 42.2668 -89.8271 matched with DB +City: Pearl City, state: Hawaii, Lat: 21.4031, Lng: -157.9566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Idaho 48.2606 -116.6098 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Idaho 48.2606 -116.6098 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Idaho 48.2606 -116.6098 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Idaho 48.2606 -116.6098 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Idaho 48.2606 -116.6098 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meriden, Kansas 39.1897 -95.5680 matched with DB +City: Meriden, state: Connecticut, Lat: 41.5369, Lng: -72.7946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Minnesota 44.3236 -93.8353 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Minnesota 44.3236 -93.8353 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Minnesota 44.3236 -93.8353 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jerome, Pennsylvania 40.2136 -78.9809 matched with DB +City: Jerome, state: Idaho, Lat: 42.7179, Lng: -114.5159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mesa, Washington 46.5735 -119.0013 matched with DB +City: Mesa, state: Arizona, Lat: 33.4015, Lng: -111.7178, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Wisconsin 43.6147 -88.4953 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Wisconsin 43.6147 -88.4953 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Wisconsin 43.6147 -88.4953 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, California 40.8133 -124.0808 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, California 40.8133 -124.0808 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goldsboro, Pennsylvania 40.1542 -76.7515 matched with DB +City: Goldsboro, state: North Carolina, Lat: 35.3778, Lng: -77.9717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmersville, Illinois 39.4412 -89.6521 matched with DB +City: Farmersville, state: California, Lat: 36.305, Lng: -119.2083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut, Mississippi 34.9497 -88.9236 matched with DB +City: Walnut, state: California, Lat: 34.0334, Lng: -117.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wadsworth, Nevada 39.6322 -119.2901 matched with DB +City: Wadsworth, state: Ohio, Lat: 41.0279, Lng: -81.7323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Louisiana 30.9236 -91.1090 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Watauga, Tennessee 36.3687 -82.2919 matched with DB +City: Watauga, state: Texas, Lat: 32.8719, Lng: -97.2515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Terrytown, Nebraska 41.8465 -103.6706 matched with DB +City: Terrytown, state: Louisiana, Lat: 29.9014, Lng: -90.0279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Michigan 42.7642 -85.3160 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Michigan 42.7642 -85.3160 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Michigan 42.7642 -85.3160 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Michigan 42.7642 -85.3160 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Florida 30.8727 -85.1612 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Florida 30.8727 -85.1612 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Florida 30.8727 -85.1612 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Florida 30.8727 -85.1612 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: El Paso, Arkansas 35.1153 -92.0812 matched with DB +City: El Paso, state: Texas, Lat: 31.8476, Lng: -106.43, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clara, Texas 29.5911 -98.1614 matched with DB +City: Santa Clara, state: California, Lat: 37.3646, Lng: -121.968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Clara, Texas 29.5911 -98.1614 matched with DB +City: Santa Clara, state: Oregon, Lat: 44.1154, Lng: -123.1344, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Arkansas 35.1660 -92.2770 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rolla, Kansas 37.1179 -101.6318 matched with DB +City: Rolla, state: Missouri, Lat: 37.9459, Lng: -91.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Iowa 41.1747 -91.8212 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Iowa 41.1747 -91.8212 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Iowa 41.1747 -91.8212 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woonsocket, South Dakota 44.0541 -98.2724 matched with DB +City: Woonsocket, state: Rhode Island, Lat: 42.001, Lng: -71.4993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy Hook, Kentucky 38.0929 -83.1240 matched with DB +City: Sandy Hook, state: Connecticut, Lat: 41.4128, Lng: -73.244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andover, Ohio 41.6066 -80.5686 matched with DB +City: Andover, state: Minnesota, Lat: 45.2571, Lng: -93.3265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Ohio 41.6066 -80.5686 matched with DB +City: Andover, state: Kansas, Lat: 37.6873, Lng: -97.1352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Ohio 41.6066 -80.5686 matched with DB +City: Andover, state: Massachusetts, Lat: 42.6466, Lng: -71.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Missouri 39.4300 -91.6662 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, South Dakota 43.0052 -98.0593 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, South Dakota 43.0052 -98.0593 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murray, Connecticut 41.1974 -73.2895 matched with DB +City: Murray, state: Kentucky, Lat: 36.6146, Lng: -88.3207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Murray, Connecticut 41.1974 -73.2895 matched with DB +City: Murray, state: Utah, Lat: 40.6498, Lng: -111.8874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Iowa 40.5258 -91.4160 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, California 40.1336 -120.9454 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Folsom, Louisiana 30.6310 -90.1941 matched with DB +City: Folsom, state: California, Lat: 38.6668, Lng: -121.1422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Folsom, Louisiana 30.6310 -90.1941 matched with DB +City: Folsom, state: Pennsylvania, Lat: 39.8924, Lng: -75.3287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robbinsville, North Carolina 35.3217 -83.8094 matched with DB +City: Robbinsville, state: New Jersey, Lat: 40.222, Lng: -74.591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Indiana 38.9859 -85.8868 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marquette, Kansas 38.5555 -97.8344 matched with DB +City: Marquette, state: Michigan, Lat: 46.544, Lng: -87.4082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Michigan 44.3297 -85.2085 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Iowa 41.7228 -91.7911 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Iowa 41.7228 -91.7911 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Iowa 41.7228 -91.7911 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Iowa 41.7228 -91.7911 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Iowa 41.7228 -91.7911 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antelope, South Dakota 43.3087 -100.6306 matched with DB +City: Antelope, state: California, Lat: 38.7153, Lng: -121.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, West Virginia 39.0616 -81.3979 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Michigan 41.7550 -84.7562 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Michigan 41.7550 -84.7562 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Maryland 39.5896 -78.9486 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Maryland 39.5896 -78.9486 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Maryland 39.5896 -78.9486 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Nebraska 40.4612 -96.3776 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Nebraska 40.4612 -96.3776 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Nebraska 40.4612 -96.3776 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Iowa 41.5067 -95.4506 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramona, Oklahoma 36.5367 -95.9264 matched with DB +City: Ramona, state: California, Lat: 33.0474, Lng: -116.8766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Findlay, Illinois 39.5223 -88.7546 matched with DB +City: Findlay, state: Ohio, Lat: 41.0469, Lng: -83.6379, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Kentucky 37.4500 -85.7401 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Minneola, Kansas 37.4421 -100.0131 matched with DB +City: Minneola, state: Florida, Lat: 28.6067, Lng: -81.7322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brent, Oklahoma 35.3640 -94.7880 matched with DB +City: Brent, state: Florida, Lat: 30.4727, Lng: -87.2495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlsbad, Texas 31.6112 -100.6406 matched with DB +City: Carlsbad, state: California, Lat: 33.1246, Lng: -117.2834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carlsbad, Texas 31.6112 -100.6406 matched with DB +City: Carlsbad, state: New Mexico, Lat: 32.401, Lng: -104.2388, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gates, Tennessee 35.8406 -89.4081 matched with DB +City: Gates, state: New York, Lat: 43.1514, Lng: -77.713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coldwater, Kansas 37.2582 -99.3378 matched with DB +City: Coldwater, state: Michigan, Lat: 41.9465, Lng: -84.9989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leawood, Missouri 37.0333 -94.4948 matched with DB +City: Leawood, state: Kansas, Lat: 38.9075, Lng: -94.6258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena, Mississippi 30.4881 -88.5056 matched with DB +City: Helena, state: Alabama, Lat: 33.2837, Lng: -86.8791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Helena, Mississippi 30.4881 -88.5056 matched with DB +City: Helena, state: Montana, Lat: 46.5965, Lng: -112.0202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Kansas 39.8934 -96.8753 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Kansas 39.8934 -96.8753 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Kansas 39.8934 -96.8753 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Kansas 39.8934 -96.8753 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Kansas 39.8934 -96.8753 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Kansas 39.8934 -96.8753 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, Kansas 39.7039 -96.4169 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Kansas 39.7039 -96.4169 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, Kansas 39.7039 -96.4169 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Illinois 41.7861 -90.2163 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Illinois 41.7861 -90.2163 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Illinois 41.7861 -90.2163 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Illinois 41.7861 -90.2163 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeville, Indiana 41.5286 -86.2745 matched with DB +City: Lakeville, state: Minnesota, Lat: 44.6774, Lng: -93.252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeville, Indiana 41.5286 -86.2745 matched with DB +City: Lakeville, state: Massachusetts, Lat: 41.831, Lng: -70.9594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hill, Louisiana 31.0470 -92.5258 matched with DB +City: Forest Hill, state: Texas, Lat: 32.6619, Lng: -97.2662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Illinois 40.2307 -90.9500 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Illinois 40.2307 -90.9500 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Illinois 40.2307 -90.9500 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadville, Mississippi 31.4720 -90.8931 matched with DB +City: Meadville, state: Pennsylvania, Lat: 41.6476, Lng: -80.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Florida 30.6197 -85.7062 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Florida 30.6197 -85.7062 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Ohio 41.1079 -83.5147 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Ohio 41.1079 -83.5147 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, Montana 48.1778 -114.4107 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, Montana 48.1778 -114.4107 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, Oklahoma 35.7094 -96.7645 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, Oklahoma 35.7094 -96.7645 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, Alabama 33.0813 -86.8799 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burke, South Dakota 43.1827 -99.2923 matched with DB +City: Burke, state: Virginia, Lat: 38.7773, Lng: -77.2633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hermitage, Missouri 37.9443 -93.3257 matched with DB +City: Hermitage, state: Pennsylvania, Lat: 41.2305, Lng: -80.4413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dryden, Virginia 36.7764 -82.9433 matched with DB +City: Dryden, state: New York, Lat: 42.4786, Lng: -76.3564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Pennsylvania 39.7891 -77.3698 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Pennsylvania 39.7891 -77.3698 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Pennsylvania 39.7891 -77.3698 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Pennsylvania 39.7891 -77.3698 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodmere, Ohio 41.4598 -81.4799 matched with DB +City: Woodmere, state: New York, Lat: 40.6375, Lng: -73.7219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodmere, Ohio 41.4598 -81.4799 matched with DB +City: Woodmere, state: Louisiana, Lat: 29.8493, Lng: -90.0751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Oregon 44.3501 -117.2668 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Oregon 44.3501 -117.2668 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Oregon 44.3501 -117.2668 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Oregon 44.3501 -117.2668 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, West Virginia 38.0808 -81.8342 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, West Virginia 38.0808 -81.8342 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, West Virginia 38.0808 -81.8342 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, West Virginia 38.0808 -81.8342 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, West Virginia 38.0808 -81.8342 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, Colorado 39.7748 -105.0567 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, West Virginia 38.8443 -79.8717 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Alabama 34.2501 -86.6846 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murray, Iowa 41.0413 -93.9488 matched with DB +City: Murray, state: Kentucky, Lat: 36.6146, Lng: -88.3207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Murray, Iowa 41.0413 -93.9488 matched with DB +City: Murray, state: Utah, Lat: 40.6498, Lng: -111.8874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Creek, Colorado 40.2741 -106.9575 matched with DB +City: Oak Creek, state: Wisconsin, Lat: 42.8803, Lng: -87.9009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Arkansas 33.0998 -93.4618 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Arkansas 33.0998 -93.4618 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malta, Ohio 39.6515 -81.8640 matched with DB +City: Malta, state: New York, Lat: 42.9853, Lng: -73.7879, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Nebraska 41.1940 -97.4260 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millstone, Kentucky 37.1638 -82.7495 matched with DB +City: Millstone, state: New Jersey, Lat: 40.2123, Lng: -74.4302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, North Dakota 47.1581 -100.7842 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Tennessee 36.5828 -87.0651 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Iowa 40.9812 -95.1027 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, North Carolina 35.4348 -80.2198 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winton, North Carolina 36.3899 -76.9350 matched with DB +City: Winton, state: California, Lat: 37.3854, Lng: -120.6173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Virginia 39.1349 -77.6642 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Virginia 39.1349 -77.6642 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Virginia 39.1349 -77.6642 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Virginia 39.1349 -77.6642 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blythe, Georgia 33.3011 -82.2025 matched with DB +City: Blythe, state: California, Lat: 33.6219, Lng: -114.6195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Ohio 38.8674 -83.7879 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Ohio 38.8674 -83.7879 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Berlin, Pennsylvania 40.8806 -76.9843 matched with DB +City: New Berlin, state: Wisconsin, Lat: 42.9726, Lng: -88.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Graham, Georgia 31.8292 -82.5030 matched with DB +City: Graham, state: North Carolina, Lat: 36.0589, Lng: -79.3894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Georgia 31.8292 -82.5030 matched with DB +City: Graham, state: Washington, Lat: 47.0322, Lng: -122.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Georgia 31.8292 -82.5030 matched with DB +City: Graham, state: Texas, Lat: 33.1017, Lng: -98.5779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, North Carolina 36.3901 -77.4193 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Titusville, New Jersey 40.3087 -74.8767 matched with DB +City: Titusville, state: Florida, Lat: 28.5727, Lng: -80.8193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, Alabama 34.4679 -86.7909 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, Alabama 34.4679 -86.7909 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Illinois 38.5774 -89.1258 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallston, North Carolina 35.4288 -81.5023 matched with DB +City: Fallston, state: Maryland, Lat: 39.5332, Lng: -76.4452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazleton, Iowa 42.6178 -91.9057 matched with DB +City: Hazleton, state: Pennsylvania, Lat: 40.9505, Lng: -75.9725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockland, Wisconsin 43.9077 -90.9165 matched with DB +City: Rockland, state: Massachusetts, Lat: 42.1295, Lng: -70.91, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hershey, Nebraska 41.1602 -100.9985 matched with DB +City: Hershey, state: Pennsylvania, Lat: 40.2806, Lng: -76.6458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, New York 42.5088 -76.6167 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, New York 42.5088 -76.6167 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, New York 42.5088 -76.6167 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, New York 42.5088 -76.6167 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, New York 42.5088 -76.6167 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, New York 42.5088 -76.6167 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, Ohio 39.5059 -83.1542 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, Ohio 39.5059 -83.1542 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, Indiana 39.2964 -85.9502 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pendleton, Texas 31.1953 -97.3368 matched with DB +City: Pendleton, state: Oregon, Lat: 45.6757, Lng: -118.8201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dudley, Georgia 32.5320 -83.0805 matched with DB +City: Dudley, state: Massachusetts, Lat: 42.055, Lng: -71.9352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Iowa 42.6174 -95.1775 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Iowa 42.6174 -95.1775 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Iowa 42.6174 -95.1775 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, Wisconsin 45.8798 -92.3628 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Wisconsin 45.8798 -92.3628 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Wisconsin 45.8798 -92.3628 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Addison, Alabama 34.2017 -87.1765 matched with DB +City: Addison, state: Illinois, Lat: 41.9313, Lng: -88.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Addison, Alabama 34.2017 -87.1765 matched with DB +City: Addison, state: Texas, Lat: 32.959, Lng: -96.8355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookside, Ohio 40.0708 -80.7607 matched with DB +City: Brookside, state: Delaware, Lat: 39.6665, Lng: -75.7152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, New Jersey 40.7617 -74.9301 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, New Jersey 40.7617 -74.9301 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, New Jersey 40.7617 -74.9301 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Republic, Ohio 41.1250 -83.0167 matched with DB +City: Republic, state: Missouri, Lat: 37.1452, Lng: -93.4446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sullivan, Wisconsin 43.0118 -88.5903 matched with DB +City: Sullivan, state: New York, Lat: 43.0923, Lng: -75.8794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Mississippi 34.8341 -89.1778 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Mississippi 34.8341 -89.1778 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Mississippi 34.8341 -89.1778 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Mississippi 34.8341 -89.1778 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Mississippi 34.8341 -89.1778 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Mississippi 34.8341 -89.1778 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parma, Michigan 42.2633 -84.5793 matched with DB +City: Parma, state: Ohio, Lat: 41.3843, Lng: -81.7286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parma, Michigan 42.2633 -84.5793 matched with DB +City: Parma, state: New York, Lat: 43.2651, Lng: -77.7968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Oklahoma 34.5856 -95.3561 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Oklahoma 34.5856 -95.3561 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Oklahoma 34.5856 -95.3561 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Oklahoma 34.5856 -95.3561 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Oklahoma 34.5856 -95.3561 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Idaho 43.9584 -111.7587 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Idaho 43.9584 -111.7587 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Minnesota 43.6993 -91.2824 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Minnesota 43.6993 -91.2824 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Minnesota 43.6993 -91.2824 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Pennsylvania 41.0907 -79.6846 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Pennsylvania 41.0907 -79.6846 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Texas 30.8472 -95.3984 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Texas 30.8472 -95.3984 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Texas 30.8472 -95.3984 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Texas 30.8472 -95.3984 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frisco, North Carolina 35.2437 -75.6018 matched with DB +City: Frisco, state: Texas, Lat: 33.156, Lng: -96.8216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarkston, Utah 41.9205 -112.0503 matched with DB +City: Clarkston, state: Georgia, Lat: 33.8117, Lng: -84.2403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Minnesota 46.0062 -95.6869 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Oklahoma 35.0582 -97.4923 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwalk, Wisconsin 43.8342 -90.6269 matched with DB +City: Norwalk, state: Ohio, Lat: 41.2443, Lng: -82.6088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Wisconsin 43.8342 -90.6269 matched with DB +City: Norwalk, state: Connecticut, Lat: 41.1144, Lng: -73.4215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Wisconsin 43.8342 -90.6269 matched with DB +City: Norwalk, state: Iowa, Lat: 41.4895, Lng: -93.6913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwalk, Wisconsin 43.8342 -90.6269 matched with DB +City: Norwalk, state: California, Lat: 33.9069, Lng: -118.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Oregon 45.7207 -120.1887 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Oregon 45.7207 -120.1887 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Oregon 45.7207 -120.1887 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Oregon 45.7207 -120.1887 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Oregon 45.7207 -120.1887 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manville, South Carolina 34.1597 -80.2974 matched with DB +City: Manville, state: New Jersey, Lat: 40.542, Lng: -74.5892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopkinton, Iowa 42.3428 -91.2490 matched with DB +City: Hopkinton, state: Massachusetts, Lat: 42.2255, Lng: -71.5378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Iowa 41.4577 -93.4038 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Iowa 41.4577 -93.4038 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Iowa 41.4577 -93.4038 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsford, Michigan 41.8619 -84.4771 matched with DB +City: Pittsford, state: New York, Lat: 43.0733, Lng: -77.5268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendon, Ohio 40.6733 -84.5174 matched with DB +City: Mendon, state: New York, Lat: 42.9859, Lng: -77.5479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, Washington 46.8403 -123.2337 matched with DB +City: Oakville, state: Connecticut, Lat: 41.5893, Lng: -73.0905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakville, Washington 46.8403 -123.2337 matched with DB +City: Oakville, state: Missouri, Lat: 38.4479, Lng: -90.3199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timberlake, Ohio 41.6655 -81.4428 matched with DB +City: Timberlake, state: Virginia, Lat: 37.3167, Lng: -79.2481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Iowa 42.6442 -91.4024 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Iowa 42.6442 -91.4024 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Michigan 44.1006 -85.1438 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Michigan 44.1006 -85.1438 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Michigan 44.1006 -85.1438 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Michigan 44.1006 -85.1438 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Michigan 44.1006 -85.1438 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Indiana 40.1089 -87.1577 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fillmore, New York 42.4658 -78.1105 matched with DB +City: Fillmore, state: California, Lat: 34.3989, Lng: -118.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant View, Indiana 39.6634 -85.9416 matched with DB +City: Pleasant View, state: Utah, Lat: 41.3249, Lng: -112.0011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wall, South Dakota 43.9914 -102.2422 matched with DB +City: Wall, state: New Jersey, Lat: 40.1674, Lng: -74.0974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, California 37.0176 -122.1881 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, California 37.0176 -122.1881 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ravenna, Kentucky 37.6871 -83.9502 matched with DB +City: Ravenna, state: Ohio, Lat: 41.1612, Lng: -81.2422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Pennsylvania 41.4843 -80.4370 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Pennsylvania 41.4843 -80.4370 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Mesa, New Mexico 32.1244 -106.7090 matched with DB +City: La Mesa, state: California, Lat: 32.7703, Lng: -117.0204, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverton, Texas 34.4714 -101.3040 matched with DB +City: Silverton, state: Oregon, Lat: 45.003, Lng: -122.7808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, North Dakota 46.4014 -101.8474 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, North Dakota 46.4014 -101.8474 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweetwater, New Jersey 39.6170 -74.6415 matched with DB +City: Sweetwater, state: Florida, Lat: 25.7785, Lng: -80.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sweetwater, New Jersey 39.6170 -74.6415 matched with DB +City: Sweetwater, state: Texas, Lat: 32.4692, Lng: -100.4092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Choctaw, Louisiana 29.8457 -90.7238 matched with DB +City: Choctaw, state: Oklahoma, Lat: 35.4802, Lng: -97.2666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Pennsylvania 39.7267 -76.3271 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, Missouri 40.3392 -95.3919 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherman, Mississippi 34.3611 -88.8387 matched with DB +City: Sherman, state: Texas, Lat: 33.6273, Lng: -96.6221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cairo, Ohio 40.8307 -84.0847 matched with DB +City: Cairo, state: Georgia, Lat: 30.879, Lng: -84.205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, New Mexico 33.2958 -104.4518 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Joliet, Montana 45.4846 -108.9723 matched with DB +City: Joliet, state: Illinois, Lat: 41.5188, Lng: -88.1499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleburg, Virginia 38.9715 -77.7429 matched with DB +City: Middleburg, state: Florida, Lat: 30.0502, Lng: -81.9011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut Creek, Arizona 35.1312 -114.1267 matched with DB +City: Walnut Creek, state: California, Lat: 37.9024, Lng: -122.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, Tennessee 35.2862 -84.7611 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Tennessee 35.2862 -84.7611 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Tennessee 35.2862 -84.7611 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Arkansas 33.0220 -92.7236 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Indiana 40.7451 -84.9409 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Ridge, South Carolina 34.3927 -80.1679 matched with DB +City: Pine Ridge, state: Florida, Lat: 28.933, Lng: -82.4761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairland, Indiana 39.5849 -85.8627 matched with DB +City: Fairland, state: Maryland, Lat: 39.0803, Lng: -76.9527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morris, Indiana 39.2823 -85.1775 matched with DB +City: Morris, state: Illinois, Lat: 41.3749, Lng: -88.4304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morris, Indiana 39.2823 -85.1775 matched with DB +City: Morris, state: New Jersey, Lat: 40.7959, Lng: -74.4945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Nebraska 40.7555 -99.0810 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Wisconsin 44.2602 -88.8715 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Wisconsin 44.2602 -88.8715 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Wisconsin 44.2602 -88.8715 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory, Pennsylvania 40.2957 -80.3052 matched with DB +City: Hickory, state: North Carolina, Lat: 35.741, Lng: -81.3223, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Texas 33.4272 -96.3409 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Texas 33.4272 -96.3409 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Texas 33.4272 -96.3409 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Pennsylvania 40.4104 -80.5067 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Pennsylvania 40.4104 -80.5067 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Pennsylvania 40.4104 -80.5067 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, West Virginia 38.3702 -81.7710 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, West Virginia 38.3702 -81.7710 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, West Virginia 38.3702 -81.7710 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, Illinois 38.3283 -89.0345 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, Illinois 38.3283 -89.0345 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Ridge, Alabama 34.4487 -85.7806 matched with DB +City: Pine Ridge, state: Florida, Lat: 28.933, Lng: -82.4761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, Texas 33.1951 -98.7436 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, Texas 33.1951 -98.7436 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburg, Illinois 37.7771 -88.8499 matched with DB +City: Pittsburg, state: Kansas, Lat: 37.4129, Lng: -94.6985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pittsburg, Illinois 37.7771 -88.8499 matched with DB +City: Pittsburg, state: California, Lat: 38.0182, Lng: -121.8965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Kentucky 38.7113 -85.3734 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kentucky 38.7113 -85.3734 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kentucky 38.7113 -85.3734 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kentucky 38.7113 -85.3734 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kentucky 38.7113 -85.3734 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kentucky 38.7113 -85.3734 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, Nebraska 41.3904 -97.4928 matched with DB +City: Duncan, state: Oklahoma, Lat: 34.5408, Lng: -97.9215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Unity, South Carolina 34.8024 -80.6936 matched with DB +City: Unity, state: Pennsylvania, Lat: 40.2811, Lng: -79.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Indiana 40.4819 -86.3946 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alden, Minnesota 43.6695 -93.5735 matched with DB +City: Alden, state: New York, Lat: 42.9114, Lng: -78.5211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Wisconsin 44.1982 -88.6599 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Wisconsin 44.1982 -88.6599 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Wisconsin 44.1982 -88.6599 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Wisconsin 44.1982 -88.6599 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Wisconsin 44.1982 -88.6599 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Addison, Michigan 41.9862 -84.3491 matched with DB +City: Addison, state: Illinois, Lat: 41.9313, Lng: -88.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Addison, Michigan 41.9862 -84.3491 matched with DB +City: Addison, state: Texas, Lat: 32.959, Lng: -96.8355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, Illinois 40.0456 -87.8293 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, Illinois 40.0456 -87.8293 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, South Dakota 42.6043 -96.5661 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, South Dakota 42.6043 -96.5661 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, South Dakota 42.6043 -96.5661 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, Iowa 40.9949 -92.1673 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, Iowa 40.9949 -92.1673 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Ohio 39.9019 -84.4958 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Ohio 39.9019 -84.4958 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, North Carolina 36.3306 -77.2149 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensburg, Kansas 37.6049 -99.2895 matched with DB +City: Greensburg, state: Pennsylvania, Lat: 40.3113, Lng: -79.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greensburg, Kansas 37.6049 -99.2895 matched with DB +City: Greensburg, state: Indiana, Lat: 39.3518, Lng: -85.5028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayesville, North Carolina 35.0452 -83.8178 matched with DB +City: Hayesville, state: Oregon, Lat: 44.9793, Lng: -122.9738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooklyn, Illinois 38.6542 -90.1679 matched with DB +City: Brooklyn, state: Ohio, Lat: 41.4349, Lng: -81.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brooklyn, Illinois 38.6542 -90.1679 matched with DB +City: Brooklyn, state: New York, Lat: 40.6501, Lng: -73.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Happy Valley, New Mexico 32.4236 -104.2903 matched with DB +City: Happy Valley, state: Oregon, Lat: 45.4358, Lng: -122.5081, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Illinois 39.6205 -90.0477 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit, Texas 33.6601 -95.2665 matched with DB +City: Detroit, state: Michigan, Lat: 42.3834, Lng: -83.1024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Illinois 40.6620 -90.4352 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Illinois 40.6620 -90.4352 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Indiana 40.6099 -86.5392 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Indiana 40.6099 -86.5392 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Francis, South Dakota 43.1426 -100.9028 matched with DB +City: St. Francis, state: Wisconsin, Lat: 42.9716, Lng: -87.873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunset, Texas 33.4480 -97.7663 matched with DB +City: Sunset, state: Florida, Lat: 25.706, Lng: -80.353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Michigan 42.9392 -84.0330 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Michigan 42.9392 -84.0330 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Valley, Alaska 64.8855 -146.8985 matched with DB +City: Pleasant Valley, state: New York, Lat: 41.7697, Lng: -73.8049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millington, Maryland 39.2629 -75.8360 matched with DB +City: Millington, state: Tennessee, Lat: 35.335, Lng: -89.8991, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, Louisiana 30.0185 -90.8513 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alhambra, Illinois 38.8878 -89.7362 matched with DB +City: Alhambra, state: California, Lat: 34.084, Lng: -118.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Pennsylvania 41.6373 -78.0903 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Pennsylvania 41.6373 -78.0903 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmont, Nebraska 40.6343 -97.5991 matched with DB +City: Fairmont, state: West Virginia, Lat: 39.4768, Lng: -80.1491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmont, Nebraska 40.6343 -97.5991 matched with DB +City: Fairmont, state: Minnesota, Lat: 43.6441, Lng: -94.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Louisiana 29.7558 -91.4280 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Louisiana 29.7558 -91.4280 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Washington, Ohio 40.3267 -81.5191 matched with DB +City: Port Washington, state: Wisconsin, Lat: 43.3846, Lng: -87.8855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Port Washington, Ohio 40.3267 -81.5191 matched with DB +City: Port Washington, state: New York, Lat: 40.8268, Lng: -73.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Texas 32.5327 -96.3186 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Texas 32.5327 -96.3186 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Texas 32.5327 -96.3186 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salisbury, Pennsylvania 39.7535 -79.0844 matched with DB +City: Salisbury, state: New York, Lat: 40.7454, Lng: -73.5604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Pennsylvania 39.7535 -79.0844 matched with DB +City: Salisbury, state: Maryland, Lat: 38.3756, Lng: -75.5865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Pennsylvania 39.7535 -79.0844 matched with DB +City: Salisbury, state: North Carolina, Lat: 35.6658, Lng: -80.4905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Pennsylvania 39.7535 -79.0844 matched with DB +City: Salisbury, state: Massachusetts, Lat: 42.8465, Lng: -70.8616, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Pennsylvania 39.7535 -79.0844 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.038, Lng: -75.9961, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salisbury, Pennsylvania 39.7535 -79.0844 matched with DB +City: Salisbury, state: Pennsylvania, Lat: 40.5768, Lng: -75.4535, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cincinnati, Arkansas 36.0405 -94.5185 matched with DB +City: Cincinnati, state: Ohio, Lat: 39.1413, Lng: -84.506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Arkansas 36.0124 -93.1874 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Arkansas 36.0124 -93.1874 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kelso, Missouri 37.1922 -89.5505 matched with DB +City: Kelso, state: Washington, Lat: 46.1236, Lng: -122.8909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hatfield, Indiana 37.9030 -87.2219 matched with DB +City: Hatfield, state: Pennsylvania, Lat: 40.2758, Lng: -75.2895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Utah 40.6810 -111.2773 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Utah 40.6810 -111.2773 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Utah 40.6810 -111.2773 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Utah 40.6810 -111.2773 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Utah 40.6810 -111.2773 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Pennsylvania 40.0782 -79.8642 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, North Carolina 35.7973 -82.6818 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, North Carolina 35.7973 -82.6818 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, North Carolina 35.7973 -82.6818 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, North Carolina 35.7973 -82.6818 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westminster, Ohio 40.6990 -83.9795 matched with DB +City: Westminster, state: Maryland, Lat: 39.5796, Lng: -77.0067, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Ohio 40.6990 -83.9795 matched with DB +City: Westminster, state: Colorado, Lat: 39.8837, Lng: -105.0624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westminster, Ohio 40.6990 -83.9795 matched with DB +City: Westminster, state: California, Lat: 33.7523, Lng: -117.9938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Jose, Illinois 40.3051 -89.6048 matched with DB +City: San Jose, state: California, Lat: 37.3012, Lng: -121.848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, Georgia 32.5306 -82.5920 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Jose, Arizona 32.8169 -109.5957 matched with DB +City: San Jose, state: California, Lat: 37.3012, Lng: -121.848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Washington 47.3848 -117.1748 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Washington 47.3848 -117.1748 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Washington 47.3848 -117.1748 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Washington 47.3848 -117.1748 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverton, Colorado 37.8107 -107.6649 matched with DB +City: Silverton, state: Oregon, Lat: 45.003, Lng: -122.7808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Alabama 34.2394 -86.9630 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Alabama 34.2394 -86.9630 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Titusville, New York 41.6663 -73.8633 matched with DB +City: Titusville, state: Florida, Lat: 28.5727, Lng: -80.8193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hot Springs, Montana 47.6091 -114.6705 matched with DB +City: Hot Springs, state: Arkansas, Lat: 34.4892, Lng: -93.0501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. John, Washington 47.0915 -117.5887 matched with DB +City: St. John, state: Indiana, Lat: 41.4429, Lng: -87.4697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Louisiana 32.8997 -92.2405 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Louisiana 32.8997 -92.2405 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Louisiana 32.8997 -92.2405 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Louisiana 32.8997 -92.2405 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Louisiana 32.8997 -92.2405 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Alabama 31.7810 -85.5583 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Alabama 31.7810 -85.5583 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Alabama 31.7810 -85.5583 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferndale, Florida 28.6220 -81.7014 matched with DB +City: Ferndale, state: Michigan, Lat: 42.4592, Lng: -83.1313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Florida 28.6220 -81.7014 matched with DB +City: Ferndale, state: Maryland, Lat: 39.1869, Lng: -76.6331, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferndale, Florida 28.6220 -81.7014 matched with DB +City: Ferndale, state: Washington, Lat: 48.8526, Lng: -122.5894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Indiana 38.2464 -87.0384 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cold Springs, California 38.7465 -120.8738 matched with DB +City: Cold Springs, state: Nevada, Lat: 39.6927, Lng: -119.9775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Pennsylvania 39.9426 -76.0789 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Pennsylvania 39.9426 -76.0789 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Pennsylvania 39.9426 -76.0789 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, Ohio 39.3925 -84.6528 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Nebraska 41.9831 -98.0828 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Nebraska 41.9831 -98.0828 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Philadelphia, Indiana 39.7814 -85.8455 matched with DB +City: Philadelphia, state: Pennsylvania, Lat: 40.0077, Lng: -75.1339, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lemon Grove, Florida 27.5765 -81.6360 matched with DB +City: Lemon Grove, state: California, Lat: 32.7331, Lng: -117.0344, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Darby, Montana 46.0231 -114.1787 matched with DB +City: Darby, state: Pennsylvania, Lat: 39.921, Lng: -75.261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, Louisiana 32.0982 -93.2193 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yukon, Pennsylvania 40.2139 -79.6864 matched with DB +City: Yukon, state: Oklahoma, Lat: 35.5201, Lng: -97.7639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Effingham, Kansas 39.5228 -95.3969 matched with DB +City: Effingham, state: Illinois, Lat: 39.1205, Lng: -88.5509, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Utah 38.7625 -111.9876 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victor, California 38.1385 -121.1987 matched with DB +City: Victor, state: New York, Lat: 42.9894, Lng: -77.4277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Junction, Iowa 42.0330 -94.2369 matched with DB +City: Grand Junction, state: Colorado, Lat: 39.0877, Lng: -108.5673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Pennsylvania 40.9216 -75.0985 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Pennsylvania 40.9216 -75.0985 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Pennsylvania 40.9216 -75.0985 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Pennsylvania 40.9216 -75.0985 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Valley, Ohio 39.6102 -84.0070 matched with DB +City: Spring Valley, state: New York, Lat: 41.1151, Lng: -74.0486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Ohio 39.6102 -84.0070 matched with DB +City: Spring Valley, state: California, Lat: 32.7317, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Valley, Ohio 39.6102 -84.0070 matched with DB +City: Spring Valley, state: Nevada, Lat: 36.0952, Lng: -115.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barton, Maryland 39.5323 -79.0171 matched with DB +City: Barton, state: New York, Lat: 42.0812, Lng: -76.4982, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, Indiana 39.6225 -87.2817 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, Indiana 39.6225 -87.2817 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Neosho, Wisconsin 43.3101 -88.5192 matched with DB +City: Neosho, state: Missouri, Lat: 36.8437, Lng: -94.3758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antioch, Georgia 32.6790 -85.0577 matched with DB +City: Antioch, state: Illinois, Lat: 42.4742, Lng: -88.0721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Antioch, Georgia 32.6790 -85.0577 matched with DB +City: Antioch, state: California, Lat: 37.9787, Lng: -121.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eau Claire, Michigan 41.9853 -86.3040 matched with DB +City: Eau Claire, state: Wisconsin, Lat: 44.8197, Lng: -91.4948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Kansas 37.5186 -95.1742 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, Oklahoma 35.0995 -98.7497 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Luis, Colorado 37.2025 -105.4225 matched with DB +City: San Luis, state: Arizona, Lat: 32.4911, Lng: -114.7089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vicksburg, Arizona 33.7293 -113.8255 matched with DB +City: Vicksburg, state: Mississippi, Lat: 32.3173, Lng: -90.8868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Park, Minnesota 46.8839 -96.0989 matched with DB +City: Lake Park, state: Florida, Lat: 26.7998, Lng: -80.0681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, Ohio 38.9984 -81.9699 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, Ohio 38.9984 -81.9699 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Onalaska, Washington 46.5782 -122.7114 matched with DB +City: Onalaska, state: Wisconsin, Lat: 43.8883, Lng: -91.2075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayesville, Ohio 40.7752 -82.2596 matched with DB +City: Hayesville, state: Oregon, Lat: 44.9793, Lng: -122.9738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawndale, North Carolina 35.4142 -81.5630 matched with DB +City: Lawndale, state: California, Lat: 33.8884, Lng: -118.3531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethlehem, Georgia 33.9368 -83.7102 matched with DB +City: Bethlehem, state: Pennsylvania, Lat: 40.6266, Lng: -75.3679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethlehem, Georgia 33.9368 -83.7102 matched with DB +City: Bethlehem, state: New York, Lat: 42.5856, Lng: -73.8219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Alabama 34.0150 -86.7493 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Alabama 34.0150 -86.7493 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Alabama 34.0150 -86.7493 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Alabama 34.0150 -86.7493 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Alabama 34.0150 -86.7493 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Alabama 34.0150 -86.7493 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mesquite, New Mexico 32.1670 -106.6885 matched with DB +City: Mesquite, state: Nevada, Lat: 36.8032, Lng: -114.133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mesquite, New Mexico 32.1670 -106.6885 matched with DB +City: Mesquite, state: Texas, Lat: 32.7602, Lng: -96.5865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Maryland 39.5125 -78.9184 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Maryland 39.5125 -78.9184 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Maryland 39.5125 -78.9184 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Maryland 39.5125 -78.9184 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Maryland 39.5125 -78.9184 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rainbow City, Arizona 33.8731 -109.9763 matched with DB +City: Rainbow City, state: Alabama, Lat: 33.9336, Lng: -86.0922, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, Wisconsin 44.1316 -90.9969 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seabrook, Massachusetts 41.5831 -70.4992 matched with DB +City: Seabrook, state: Texas, Lat: 29.5751, Lng: -95.0235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seabrook, Massachusetts 41.5831 -70.4992 matched with DB +City: Seabrook, state: Maryland, Lat: 38.9802, Lng: -76.8502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Missouri 37.5864 -90.6292 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Missouri 37.5864 -90.6292 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Oregon 44.4169 -119.1132 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Oregon 44.4169 -119.1132 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Oregon 44.4169 -119.1132 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Oregon 44.4169 -119.1132 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Oregon 44.4169 -119.1132 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Louisiana 31.8154 -93.5164 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Louisiana 31.8154 -93.5164 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Louisiana 31.8154 -93.5164 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Kansas 38.3857 -97.4303 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Kansas 38.3857 -97.4303 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Kansas 38.3857 -97.4303 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Kansas 38.3857 -97.4303 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Kansas 38.3857 -97.4303 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Kansas 38.3857 -97.4303 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Christiansburg, Ohio 40.0568 -84.0255 matched with DB +City: Christiansburg, state: Virginia, Lat: 37.1406, Lng: -80.4036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gresham, Wisconsin 44.8478 -88.7856 matched with DB +City: Gresham, state: Oregon, Lat: 45.5021, Lng: -122.4413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bainbridge, Indiana 39.7615 -86.8112 matched with DB +City: Bainbridge, state: Georgia, Lat: 30.9052, Lng: -84.5732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bainbridge, Indiana 39.7615 -86.8112 matched with DB +City: Bainbridge, state: Ohio, Lat: 41.3855, Lng: -81.3478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Texas 32.4550 -96.5672 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Texas 32.4550 -96.5672 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Texas 32.4550 -96.5672 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Texas 32.4550 -96.5672 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Texas 32.4550 -96.5672 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bismarck, Illinois 40.2594 -87.6112 matched with DB +City: Bismarck, state: North Dakota, Lat: 46.8143, Lng: -100.7694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveland, California 37.8325 -120.2392 matched with DB +City: Groveland, state: Florida, Lat: 28.6098, Lng: -81.8246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Minnesota 44.6085 -93.0025 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Minnesota 44.6085 -93.0025 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Minnesota 44.6085 -93.0025 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elma, Iowa 43.2457 -92.4387 matched with DB +City: Elma, state: New York, Lat: 42.8231, Lng: -78.6371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Minnesota 43.8491 -96.3999 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Minnesota 43.8491 -96.3999 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Round Rock, Arizona 36.5044 -109.4616 matched with DB +City: Round Rock, state: Texas, Lat: 30.527, Lng: -97.6642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Hill, Tennessee 35.9767 -85.1996 matched with DB +City: Pleasant Hill, state: Iowa, Lat: 41.5867, Lng: -93.4953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Tennessee 35.9767 -85.1996 matched with DB +City: Pleasant Hill, state: Missouri, Lat: 38.8059, Lng: -94.2652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Hill, Tennessee 35.9767 -85.1996 matched with DB +City: Pleasant Hill, state: California, Lat: 37.9539, Lng: -122.0759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Vermont 44.3274 -72.9892 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Vermont 44.3274 -72.9892 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Vermont 44.3274 -72.9892 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Vermont 44.3274 -72.9892 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Ohio 41.5407 -82.7534 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Ohio 41.5407 -82.7534 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Ohio 41.5407 -82.7534 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Indiana 39.5017 -85.1877 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Indiana 39.5017 -85.1877 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Indiana 39.5017 -85.1877 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Indiana 39.5017 -85.1877 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, Louisiana 32.6093 -92.6481 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, Louisiana 32.6093 -92.6481 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Maria, Texas 26.0767 -97.8465 matched with DB +City: Santa Maria, state: California, Lat: 34.9333, Lng: -120.4431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Kentucky 39.0531 -84.8573 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Washington 47.0103 -117.1395 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Tennessee 35.4613 -89.4012 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesville, Georgia 31.2263 -81.7880 matched with DB +City: Waynesville, state: North Carolina, Lat: 35.4854, Lng: -82.9996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inglewood, Nebraska 41.4160 -96.5025 matched with DB +City: Inglewood, state: California, Lat: 33.9566, Lng: -118.3444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Indiana 41.5318 -85.0840 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Indiana 41.5318 -85.0840 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Indiana 41.5318 -85.0840 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Indiana 41.5318 -85.0840 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Indiana 41.5318 -85.0840 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Rapids, Nebraska 41.5589 -98.1493 matched with DB +City: Cedar Rapids, state: Iowa, Lat: 41.9662, Lng: -91.6783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chillicothe, Texas 34.2560 -99.5144 matched with DB +City: Chillicothe, state: Missouri, Lat: 39.7953, Lng: -93.5499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chillicothe, Texas 34.2560 -99.5144 matched with DB +City: Chillicothe, state: Ohio, Lat: 39.3393, Lng: -82.9939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey Park, New Mexico 34.7511 -106.6530 matched with DB +City: Monterey Park, state: California, Lat: 34.0497, Lng: -118.1326, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winona, Texas 32.4928 -95.1730 matched with DB +City: Winona, state: Minnesota, Lat: 44.0505, Lng: -91.6684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Pennsylvania 40.8812 -79.2411 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Pennsylvania 40.8812 -79.2411 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Pennsylvania 40.8812 -79.2411 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warwick, Georgia 31.8298 -83.9206 matched with DB +City: Warwick, state: Rhode Island, Lat: 41.7062, Lng: -71.4334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Georgia 31.8298 -83.9206 matched with DB +City: Warwick, state: New York, Lat: 41.2597, Lng: -74.3614, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Georgia 31.8298 -83.9206 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.1558, Lng: -76.2799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Georgia 31.8298 -83.9206 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.2503, Lng: -75.0818, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Townsend, Tennessee 35.6763 -83.7529 matched with DB +City: Townsend, state: Massachusetts, Lat: 42.6671, Lng: -71.7115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceville, Pennsylvania 41.9959 -77.1304 matched with DB +City: Lawrenceville, state: Georgia, Lat: 33.9523, Lng: -83.9932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Indiana 41.5092 -85.7611 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Virginia 37.2330 -80.2051 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Virginia 37.2330 -80.2051 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Virginia 37.2330 -80.2051 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Virginia 37.2330 -80.2051 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, Wisconsin 42.9823 -88.6389 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, Wisconsin 42.9823 -88.6389 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Van Buren, Ohio 41.1387 -83.6494 matched with DB +City: Van Buren, state: Arkansas, Lat: 35.4483, Lng: -94.3528, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Van Buren, Ohio 41.1387 -83.6494 matched with DB +City: Van Buren, state: New York, Lat: 43.1211, Lng: -76.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugar Grove, Pennsylvania 41.9837 -79.3395 matched with DB +City: Sugar Grove, state: Illinois, Lat: 41.7759, Lng: -88.4481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, Indiana 38.0018 -86.7991 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Indiana 38.0018 -86.7991 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Indiana 38.0018 -86.7991 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Indiana 38.0018 -86.7991 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Indiana 38.0018 -86.7991 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, Indiana 38.0018 -86.7991 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denver, Indiana 40.8647 -86.0772 matched with DB +City: Denver, state: Colorado, Lat: 39.762, Lng: -104.8758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wakefield, Pennsylvania 39.7766 -76.1804 matched with DB +City: Wakefield, state: Massachusetts, Lat: 42.5035, Lng: -71.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wakefield, Pennsylvania 39.7766 -76.1804 matched with DB +City: Wakefield, state: Virginia, Lat: 38.823, Lng: -77.2406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Picture Rocks, Pennsylvania 41.2804 -76.7079 matched with DB +City: Picture Rocks, state: Arizona, Lat: 32.3274, Lng: -111.2558, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Pennsylvania 39.8156 -76.8410 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Pennsylvania 39.8156 -76.8410 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Pennsylvania 39.8156 -76.8410 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olive Branch, Illinois 37.1757 -89.3525 matched with DB +City: Olive Branch, state: Mississippi, Lat: 34.961, Lng: -89.8469, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeville, New York 42.8367 -77.7030 matched with DB +City: Lakeville, state: Minnesota, Lat: 44.6774, Lng: -93.252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeville, New York 42.8367 -77.7030 matched with DB +City: Lakeville, state: Massachusetts, Lat: 41.831, Lng: -70.9594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clark, Pennsylvania 41.2831 -80.4088 matched with DB +City: Clark, state: New Jersey, Lat: 40.6203, Lng: -74.3134, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverton, Idaho 47.4958 -115.9604 matched with DB +City: Silverton, state: Oregon, Lat: 45.003, Lng: -122.7808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Michigan 45.0012 -84.1513 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, North Dakota 48.0700 -103.8429 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, North Dakota 48.0700 -103.8429 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, North Dakota 48.0700 -103.8429 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenview, Kentucky 38.3019 -85.6519 matched with DB +City: Glenview, state: Illinois, Lat: 42.0825, Lng: -87.8214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bennington, Kansas 39.0334 -97.5932 matched with DB +City: Bennington, state: Vermont, Lat: 42.8854, Lng: -73.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Oak, Oklahoma 34.9515 -95.0791 matched with DB +City: Red Oak, state: Texas, Lat: 32.5212, Lng: -96.7866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Oregon 43.9892 -122.9100 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Oregon 43.9892 -122.9100 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Minnesota 45.9663 -95.5946 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Minnesota 45.9663 -95.5946 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Minnesota 45.9663 -95.5946 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Old Forge, New York 43.7060 -74.9722 matched with DB +City: Old Forge, state: Pennsylvania, Lat: 41.3704, Lng: -75.7409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, Illinois 38.9764 -90.4258 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, Illinois 38.9764 -90.4258 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matthews, Missouri 36.7584 -89.5688 matched with DB +City: Matthews, state: North Carolina, Lat: 35.1195, Lng: -80.7101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverdale, Mississippi 31.4960 -91.4152 matched with DB +City: Cloverdale, state: California, Lat: 38.7962, Lng: -123.0152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Crosse, Indiana 41.3177 -86.8896 matched with DB +City: La Crosse, state: Wisconsin, Lat: 43.8241, Lng: -91.2268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Nebraska 40.4572 -96.5129 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Alabama 33.3756 -85.3974 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Illinois 42.2316 -88.5448 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Illinois 42.2316 -88.5448 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Illinois 42.2316 -88.5448 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Mississippi 34.1810 -89.1677 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Mississippi 34.1810 -89.1677 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Utah 41.9116 -111.9356 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Utah 41.9116 -111.9356 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Utah 41.9116 -111.9356 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Oklahoma 35.5042 -95.0323 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: University Park, Iowa 41.2856 -92.6150 matched with DB +City: University Park, state: Texas, Lat: 32.8506, Lng: -96.7937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Georgia 32.8115 -84.6989 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Georgia 32.8115 -84.6989 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Georgia 32.8115 -84.6989 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Kentucky 37.5081 -85.6992 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Kentucky 37.5081 -85.6992 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Crosse, Virginia 36.7014 -78.0943 matched with DB +City: La Crosse, state: Wisconsin, Lat: 43.8241, Lng: -91.2268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Illinois 40.0301 -90.9580 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Illinois 40.0301 -90.9580 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Illinois 40.0301 -90.9580 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Illinois 40.0301 -90.9580 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Illinois 40.0301 -90.9580 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Indiana 39.6773 -86.4883 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Indiana 39.6773 -86.4883 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, South Carolina 33.9245 -81.3928 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Indiana 40.1890 -86.9023 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgewood, Ohio 39.1899 -84.4343 matched with DB +City: Ridgewood, state: New Jersey, Lat: 40.9821, Lng: -74.1127, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, North Dakota 47.4995 -97.3693 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, North Dakota 47.4995 -97.3693 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, North Dakota 47.4995 -97.3693 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, North Dakota 47.4995 -97.3693 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenville, Minnesota 43.5734 -93.2809 matched with DB +City: Glenville, state: New York, Lat: 42.8869, Lng: -73.9925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Minnesota 44.9524 -93.5155 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Goshen, California 36.3492 -119.4574 matched with DB +City: West Goshen, state: Pennsylvania, Lat: 39.9756, Lng: -75.5927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lacey, Arkansas 33.4503 -91.8496 matched with DB +City: Lacey, state: Washington, Lat: 47.0462, Lng: -122.7933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lacey, Arkansas 33.4503 -91.8496 matched with DB +City: Lacey, state: New Jersey, Lat: 39.8564, Lng: -74.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyndon, Illinois 41.7174 -89.9240 matched with DB +City: Lyndon, state: Kentucky, Lat: 38.2645, Lng: -85.5891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Maine 44.4038 -70.7863 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irondale, Missouri 37.8356 -90.6718 matched with DB +City: Irondale, state: Alabama, Lat: 33.5439, Lng: -86.6606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, North Carolina 35.9200 -76.2421 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, North Carolina 35.9200 -76.2421 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, North Carolina 35.9200 -76.2421 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, North Carolina 35.9200 -76.2421 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, North Carolina 35.9200 -76.2421 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, North Carolina 35.9200 -76.2421 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, Missouri 39.1010 -91.6472 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Georgia 34.9706 -85.4078 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Georgia 34.9706 -85.4078 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ironton, Minnesota 46.4817 -93.9978 matched with DB +City: Ironton, state: Ohio, Lat: 38.5323, Lng: -82.6779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingman, Indiana 39.9664 -87.2782 matched with DB +City: Kingman, state: Arizona, Lat: 35.217, Lng: -114.0105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holden, West Virginia 37.8238 -82.0788 matched with DB +City: Holden, state: Massachusetts, Lat: 42.3561, Lng: -71.8608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Alabama 34.6407 -87.1838 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Iowa 40.6821 -93.1211 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Iowa 40.6821 -93.1211 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parma, Missouri 36.6117 -89.8189 matched with DB +City: Parma, state: Ohio, Lat: 41.3843, Lng: -81.7286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parma, Missouri 36.6117 -89.8189 matched with DB +City: Parma, state: New York, Lat: 43.2651, Lng: -77.7968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Colorado 38.1290 -108.2919 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Colorado 38.1290 -108.2919 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, Wisconsin 44.6908 -87.4787 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, Wisconsin 44.6908 -87.4787 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Minnesota 44.4471 -94.3927 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Minnesota 44.4471 -94.3927 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Minnesota 44.4471 -94.3927 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Minnesota 44.4471 -94.3927 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Ohio 41.0991 -82.1231 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Ohio 41.0991 -82.1231 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Wisconsin 42.9184 -90.2742 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Louisiana 33.0073 -92.7224 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Tennessee 35.3173 -86.6407 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Ohio 40.4327 -80.7718 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Ohio 40.4327 -80.7718 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Ohio 40.4327 -80.7718 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Ohio 40.4327 -80.7718 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Ohio 40.4327 -80.7718 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millington, Illinois 41.5623 -88.6024 matched with DB +City: Millington, state: Tennessee, Lat: 35.335, Lng: -89.8991, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Arkansas 36.2522 -92.6886 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Arkansas 36.2522 -92.6886 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Arkansas 36.2522 -92.6886 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center, North Dakota 47.1149 -101.2977 matched with DB +City: Center, state: Pennsylvania, Lat: 40.6483, Lng: -80.2977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, California 35.2769 -116.0717 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, New York 42.3350 -76.7881 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhart, Iowa 41.7939 -93.5241 matched with DB +City: Elkhart, state: Indiana, Lat: 41.6916, Lng: -85.9627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Kentucky 38.7877 -84.3720 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Kentucky 38.7877 -84.3720 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Illinois 41.6108 -90.1752 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, Minnesota 44.0449 -92.9976 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, Minnesota 44.0449 -92.9976 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Mississippi 34.6438 -90.3495 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Mississippi 34.6438 -90.3495 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morrisville, Missouri 37.4766 -93.4293 matched with DB +City: Morrisville, state: Pennsylvania, Lat: 40.2074, Lng: -74.78, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morrisville, Missouri 37.4766 -93.4293 matched with DB +City: Morrisville, state: North Carolina, Lat: 35.8368, Lng: -78.8348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, North Dakota 47.3187 -101.3822 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melbourne, Kentucky 39.0319 -84.3707 matched with DB +City: Melbourne, state: Florida, Lat: 28.1086, Lng: -80.6627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howard, Kansas 37.4695 -96.2631 matched with DB +City: Howard, state: Wisconsin, Lat: 44.5703, Lng: -88.0928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Missouri 39.8986 -92.4800 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hammond, Illinois 39.7994 -88.5921 matched with DB +City: Hammond, state: Indiana, Lat: 41.6168, Lng: -87.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hammond, Illinois 39.7994 -88.5921 matched with DB +City: Hammond, state: Louisiana, Lat: 30.5061, Lng: -90.4563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pineville, West Virginia 37.5846 -81.5355 matched with DB +City: Pineville, state: Louisiana, Lat: 31.3414, Lng: -92.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pineville, West Virginia 37.5846 -81.5355 matched with DB +City: Pineville, state: North Carolina, Lat: 35.0864, Lng: -80.8915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvington, Illinois 38.4386 -89.1602 matched with DB +City: Irvington, state: New Jersey, Lat: 40.7243, Lng: -74.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calhoun, Tennessee 35.2993 -84.7472 matched with DB +City: Calhoun, state: Georgia, Lat: 34.491, Lng: -84.9386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Nebraska 40.9614 -96.4433 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Nebraska 40.9614 -96.4433 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Nebraska 40.9614 -96.4433 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Nebraska 40.9614 -96.4433 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, South Dakota 43.6999 -97.1844 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsville, Connecticut 41.9545 -71.8851 matched with DB +City: Mechanicsville, state: Virginia, Lat: 37.6263, Lng: -77.3561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Indiana 37.9462 -87.1690 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Indiana 37.9462 -87.1690 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Indiana 37.9462 -87.1690 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Indiana 37.9462 -87.1690 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center, Missouri 39.5096 -91.5291 matched with DB +City: Center, state: Pennsylvania, Lat: 40.6483, Lng: -80.2977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheaton, Missouri 36.7616 -94.0569 matched with DB +City: Wheaton, state: Illinois, Lat: 41.8561, Lng: -88.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheaton, Missouri 36.7616 -94.0569 matched with DB +City: Wheaton, state: Maryland, Lat: 39.0492, Lng: -77.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, Arkansas 35.0915 -93.4458 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, Arkansas 35.0915 -93.4458 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Texas 28.0821 -97.8828 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Minnesota 44.5305 -94.8841 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Iowa 42.0595 -91.0052 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Iowa 42.0595 -91.0052 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Texas 31.5848 -95.8498 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, South Carolina 33.9246 -81.4226 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, South Carolina 33.9246 -81.4226 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, South Carolina 33.9246 -81.4226 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramsey, Indiana 38.3237 -86.1547 matched with DB +City: Ramsey, state: New Jersey, Lat: 41.0595, Lng: -74.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ramsey, Indiana 38.3237 -86.1547 matched with DB +City: Ramsey, state: Minnesota, Lat: 45.2617, Lng: -93.4494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Utah 41.5354 -111.8125 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Utah 41.5354 -111.8125 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Derby, Ohio 39.7640 -83.2068 matched with DB +City: Derby, state: Connecticut, Lat: 41.3265, Lng: -73.0833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Ohio 39.7640 -83.2068 matched with DB +City: Derby, state: Kansas, Lat: 37.5571, Lng: -97.2551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Ohio 39.7640 -83.2068 matched with DB +City: Derby, state: Colorado, Lat: 39.84, Lng: -104.9172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewster, Minnesota 43.6973 -95.4645 matched with DB +City: Brewster, state: Massachusetts, Lat: 41.7463, Lng: -70.0676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stuart, Nebraska 42.6008 -99.1405 matched with DB +City: Stuart, state: Florida, Lat: 27.1959, Lng: -80.2444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Pennsylvania 41.9506 -75.6095 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Pennsylvania 41.9506 -75.6095 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Pennsylvania 41.9506 -75.6095 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Oklahoma 35.8407 -94.6061 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Oklahoma 35.8407 -94.6061 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Oklahoma 35.8407 -94.6061 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Oklahoma 35.8407 -94.6061 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kensington, Kansas 39.7667 -99.0329 matched with DB +City: Kensington, state: Connecticut, Lat: 41.6284, Lng: -72.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medway, Ohio 39.8837 -84.0135 matched with DB +City: Medway, state: Massachusetts, Lat: 42.1535, Lng: -71.4291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay Shore, Michigan 45.3609 -85.1115 matched with DB +City: Bay Shore, state: New York, Lat: 40.7288, Lng: -73.2495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmwood Park, Wisconsin 42.6917 -87.8223 matched with DB +City: Elmwood Park, state: New Jersey, Lat: 40.9049, Lng: -74.1201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elmwood Park, Wisconsin 42.6917 -87.8223 matched with DB +City: Elmwood Park, state: Illinois, Lat: 41.9225, Lng: -87.8163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, Pennsylvania 40.6938 -76.2925 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, Pennsylvania 40.6938 -76.2925 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stamford, Vermont 42.7595 -73.0562 matched with DB +City: Stamford, state: Connecticut, Lat: 41.1039, Lng: -73.5585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, New York 42.4691 -79.1755 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, New York 42.4691 -79.1755 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ringwood, Oklahoma 36.3823 -98.2419 matched with DB +City: Ringwood, state: New Jersey, Lat: 41.1065, Lng: -74.2749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeton, North Carolina 35.1348 -77.0160 matched with DB +City: Bridgeton, state: Missouri, Lat: 38.7673, Lng: -90.4275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeton, North Carolina 35.1348 -77.0160 matched with DB +City: Bridgeton, state: New Jersey, Lat: 39.4286, Lng: -75.2281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Republic, Michigan 46.3956 -87.9819 matched with DB +City: Republic, state: Missouri, Lat: 37.1452, Lng: -93.4446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, Alabama 34.1862 -86.7473 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanford, Illinois 40.4322 -89.2209 matched with DB +City: Stanford, state: California, Lat: 37.4252, Lng: -122.1674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Pennsylvania 40.7850 -76.2169 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, Michigan 42.5370 -85.6389 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Utah 41.9371 -111.4121 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Utah 41.9371 -111.4121 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Utah 41.9371 -111.4121 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Utah 41.9371 -111.4121 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Utah 41.9371 -111.4121 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Utah 41.9371 -111.4121 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zanesville, Indiana 40.9155 -85.2806 matched with DB +City: Zanesville, state: Ohio, Lat: 39.9565, Lng: -82.0132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williston, Tennessee 35.1585 -89.3754 matched with DB +City: Williston, state: North Dakota, Lat: 48.1814, Lng: -103.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Williston, Tennessee 35.1585 -89.3754 matched with DB +City: Williston, state: Vermont, Lat: 44.4345, Lng: -73.0888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, New Jersey 39.2937 -75.1707 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, New Jersey 39.2937 -75.1707 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, New Jersey 39.2937 -75.1707 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grimes, Alabama 31.2999 -85.4503 matched with DB +City: Grimes, state: Iowa, Lat: 41.6779, Lng: -93.7947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buda, Illinois 41.3290 -89.6793 matched with DB +City: Buda, state: Texas, Lat: 30.0758, Lng: -97.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sedalia, North Carolina 36.0760 -79.6208 matched with DB +City: Sedalia, state: Missouri, Lat: 38.7059, Lng: -93.234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crofton, Kentucky 37.0477 -87.4842 matched with DB +City: Crofton, state: Maryland, Lat: 39.0144, Lng: -76.68, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsland, Arkansas 33.8659 -92.2911 matched with DB +City: Kingsland, state: Georgia, Lat: 30.8194, Lng: -81.7216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymondville, Missouri 37.3398 -91.8364 matched with DB +City: Raymondville, state: Texas, Lat: 26.4759, Lng: -97.7769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Park, Georgia 32.3822 -82.3153 matched with DB +City: Oak Park, state: Michigan, Lat: 42.4649, Lng: -83.1824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, Georgia 32.3822 -82.3153 matched with DB +City: Oak Park, state: Illinois, Lat: 41.8872, Lng: -87.7899, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Park, Georgia 32.3822 -82.3153 matched with DB +City: Oak Park, state: California, Lat: 34.185, Lng: -118.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winfield, Texas 33.1656 -95.1104 matched with DB +City: Winfield, state: Kansas, Lat: 37.274, Lng: -96.95, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winfield, Texas 33.1656 -95.1104 matched with DB +City: Winfield, state: Illinois, Lat: 41.8787, Lng: -88.1507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dodge City, Alabama 34.0445 -86.8853 matched with DB +City: Dodge City, state: Kansas, Lat: 37.7611, Lng: -100.0182, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Idaho 42.0369 -111.9783 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Idaho 42.0369 -111.9783 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Idaho 42.0369 -111.9783 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wall, Pennsylvania 40.3916 -79.7860 matched with DB +City: Wall, state: New Jersey, Lat: 40.1674, Lng: -74.0974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, South Carolina 34.5921 -81.4645 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Kansas 38.3962 -95.6048 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Kansas 38.3962 -95.6048 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Rock, South Carolina 34.4691 -79.3900 matched with DB +City: Little Rock, state: Arkansas, Lat: 34.7256, Lng: -92.3577, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Littleton, North Carolina 36.4343 -77.9110 matched with DB +City: Littleton, state: Colorado, Lat: 39.5915, Lng: -105.0188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Littleton, North Carolina 36.4343 -77.9110 matched with DB +City: Littleton, state: Massachusetts, Lat: 42.535, Lng: -71.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelbyville, Missouri 39.8072 -92.0404 matched with DB +City: Shelbyville, state: Indiana, Lat: 39.5352, Lng: -85.7793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Missouri 39.8072 -92.0404 matched with DB +City: Shelbyville, state: Kentucky, Lat: 38.2067, Lng: -85.2292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Missouri 39.8072 -92.0404 matched with DB +City: Shelbyville, state: Tennessee, Lat: 35.4987, Lng: -86.4517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayden, Arizona 32.9995 -110.7814 matched with DB +City: Hayden, state: Idaho, Lat: 47.768, Lng: -116.804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawfordsville, Oregon 44.3561 -122.8649 matched with DB +City: Crawfordsville, state: Indiana, Lat: 40.0428, Lng: -86.8976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Oklahoma 35.7906 -95.9981 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Oklahoma 35.7906 -95.9981 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Oklahoma 35.7906 -95.9981 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Oklahoma 35.7906 -95.9981 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Oklahoma 35.7906 -95.9981 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clay, West Virginia 38.4662 -81.0813 matched with DB +City: Clay, state: Alabama, Lat: 33.6951, Lng: -86.609, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clay, West Virginia 38.4662 -81.0813 matched with DB +City: Clay, state: New York, Lat: 43.1808, Lng: -76.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Exeter, Nebraska 40.6445 -97.4489 matched with DB +City: Exeter, state: California, Lat: 36.2941, Lng: -119.1459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Nebraska 40.6445 -97.4489 matched with DB +City: Exeter, state: New Hampshire, Lat: 42.9901, Lng: -70.9646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Nebraska 40.6445 -97.4489 matched with DB +City: Exeter, state: Pennsylvania, Lat: 40.3139, Lng: -75.834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lorain, Pennsylvania 40.2961 -78.8959 matched with DB +City: Lorain, state: Ohio, Lat: 41.4409, Lng: -82.184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Ohio 40.9695 -82.6016 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Ohio 40.9695 -82.6016 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Ohio 40.9695 -82.6016 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Birmingham, Iowa 40.8780 -91.9472 matched with DB +City: Birmingham, state: Michigan, Lat: 42.5446, Lng: -83.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Birmingham, Iowa 40.8780 -91.9472 matched with DB +City: Birmingham, state: Alabama, Lat: 33.5279, Lng: -86.7971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Toledo, Washington 46.4415 -122.8497 matched with DB +City: Toledo, state: Ohio, Lat: 41.6638, Lng: -83.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buford, South Carolina 34.7480 -80.6285 matched with DB +City: Buford, state: Georgia, Lat: 34.1192, Lng: -83.9903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scranton, Iowa 42.0192 -94.5492 matched with DB +City: Scranton, state: Pennsylvania, Lat: 41.4044, Lng: -75.6649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, North Carolina 35.3030 -76.7889 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, North Carolina 35.3030 -76.7889 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, North Carolina 35.3030 -76.7889 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, North Carolina 35.3030 -76.7889 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Minnesota 44.7327 -93.9644 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allendale, Illinois 38.5276 -87.7103 matched with DB +City: Allendale, state: Michigan, Lat: 42.9845, Lng: -85.9499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortland, Nebraska 40.5059 -96.7063 matched with DB +City: Cortland, state: New York, Lat: 42.6004, Lng: -76.1784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Oklahoma 36.0550 -98.5884 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Oklahoma 36.0550 -98.5884 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Oklahoma 36.0550 -98.5884 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Oklahoma 36.0550 -98.5884 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Oklahoma 36.0550 -98.5884 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Oklahoma 36.0550 -98.5884 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Cruz, Texas 26.3537 -98.7676 matched with DB +City: Santa Cruz, state: California, Lat: 36.9789, Lng: -122.0346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilsonville, Illinois 39.0694 -89.8553 matched with DB +City: Wilsonville, state: Oregon, Lat: 45.3109, Lng: -122.7702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Badger, Iowa 42.6141 -94.1446 matched with DB +City: Badger, state: Alaska, Lat: 64.8006, Lng: -147.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warsaw, Ohio 40.3360 -82.0019 matched with DB +City: Warsaw, state: Indiana, Lat: 41.2448, Lng: -85.8465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hot Springs, North Carolina 35.8934 -82.8303 matched with DB +City: Hot Springs, state: Arkansas, Lat: 34.4892, Lng: -93.0501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvington, Virginia 37.6621 -76.4205 matched with DB +City: Irvington, state: New Jersey, Lat: 40.7243, Lng: -74.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elwood, Nebraska 40.5897 -99.8616 matched with DB +City: Elwood, state: New York, Lat: 40.8462, Lng: -73.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holden, Utah 39.1003 -112.2705 matched with DB +City: Holden, state: Massachusetts, Lat: 42.3561, Lng: -71.8608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, New Jersey 39.4927 -74.8765 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, New Jersey 39.4927 -74.8765 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, New Jersey 39.4927 -74.8765 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, New Jersey 39.4927 -74.8765 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Callaway, Nebraska 41.2915 -99.9203 matched with DB +City: Callaway, state: Florida, Lat: 30.1349, Lng: -85.5568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White City, Kansas 38.7938 -96.7349 matched with DB +City: White City, state: Oregon, Lat: 42.4316, Lng: -122.8322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carney, Oklahoma 35.8062 -97.0155 matched with DB +City: Carney, state: Maryland, Lat: 39.405, Lng: -76.5235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Falmouth, Pennsylvania 40.1316 -76.7046 matched with DB +City: Falmouth, state: Maine, Lat: 43.7476, Lng: -70.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Falmouth, Pennsylvania 40.1316 -76.7046 matched with DB +City: Falmouth, state: Massachusetts, Lat: 41.5913, Lng: -70.5912, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, Nebraska 40.2346 -100.4198 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, Nebraska 40.2346 -100.4198 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Lake, Utah 40.0060 -111.7503 matched with DB +City: Spring Lake, state: North Carolina, Lat: 35.1843, Lng: -78.9962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Grove, West Virginia 38.2223 -81.4378 matched with DB +City: Cedar Grove, state: New Jersey, Lat: 40.8565, Lng: -74.2288, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Pennsylvania 40.8380 -79.6351 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Pennsylvania 40.8380 -79.6351 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Pennsylvania 40.4807 -75.7592 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, Wisconsin 43.8132 -90.5268 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lenox, Tennessee 36.0876 -89.4972 matched with DB +City: Lenox, state: New York, Lat: 43.1113, Lng: -75.7582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Indiana 39.9192 -85.4169 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Indiana 39.9192 -85.4169 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Indiana 39.9192 -85.4169 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Kansas 38.4004 -95.2520 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kansas 38.4004 -95.2520 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kansas 38.4004 -95.2520 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kansas 38.4004 -95.2520 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Kansas 38.4004 -95.2520 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Mississippi 32.1731 -88.8163 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Mississippi 32.1731 -88.8163 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellwood, Nebraska 41.3418 -97.2398 matched with DB +City: Bellwood, state: Illinois, Lat: 41.8829, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Washington 48.0572 -117.7466 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Washington 48.0572 -117.7466 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Washington 48.0572 -117.7466 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valparaiso, Nebraska 41.0798 -96.8330 matched with DB +City: Valparaiso, state: Indiana, Lat: 41.4783, Lng: -87.0506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Michigan 42.3833 -85.9590 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Michigan 42.3833 -85.9590 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Michigan 42.3833 -85.9590 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vail, Iowa 42.0597 -95.2005 matched with DB +City: Vail, state: Arizona, Lat: 32.0217, Lng: -110.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenwood, Illinois 42.3954 -88.3836 matched with DB +City: Greenwood, state: Indiana, Lat: 39.6019, Lng: -86.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Illinois 42.3954 -88.3836 matched with DB +City: Greenwood, state: Arkansas, Lat: 35.2134, Lng: -94.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Illinois 42.3954 -88.3836 matched with DB +City: Greenwood, state: South Carolina, Lat: 34.1947, Lng: -82.1542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenwood, Illinois 42.3954 -88.3836 matched with DB +City: Greenwood, state: Mississippi, Lat: 33.5126, Lng: -90.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: De Witt, Nebraska 40.3953 -96.9221 matched with DB +City: De Witt, state: New York, Lat: 43.0501, Lng: -76.071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: De Witt, Nebraska 40.3953 -96.9221 matched with DB +City: De Witt, state: New York, Lat: 43.03, Lng: -76.0819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meadville, Missouri 39.7882 -93.2992 matched with DB +City: Meadville, state: Pennsylvania, Lat: 41.6476, Lng: -80.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Wisconsin 43.7799 -89.5657 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Wisconsin 43.7799 -89.5657 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Wisconsin 43.7799 -89.5657 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Wisconsin 43.7799 -89.5657 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Wisconsin 43.7799 -89.5657 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Louisiana 30.0918 -90.8844 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Louisiana 30.0918 -90.8844 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Louisiana 30.0918 -90.8844 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamont, Iowa 42.5986 -91.6404 matched with DB +City: Lamont, state: California, Lat: 35.2659, Lng: -118.9159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arkansas City, Arkansas 33.6089 -91.2048 matched with DB +City: Arkansas City, state: Kansas, Lat: 37.0726, Lng: -97.0385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Adams, Michigan 41.9707 -84.5251 matched with DB +City: North Adams, state: Massachusetts, Lat: 42.6844, Lng: -73.1166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Decatur, Nebraska 42.0058 -96.2497 matched with DB +City: Decatur, state: Alabama, Lat: 34.5731, Lng: -86.9905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Nebraska 42.0058 -96.2497 matched with DB +City: Decatur, state: Indiana, Lat: 40.8286, Lng: -84.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Nebraska 42.0058 -96.2497 matched with DB +City: Decatur, state: Illinois, Lat: 39.8557, Lng: -88.9342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Decatur, Nebraska 42.0058 -96.2497 matched with DB +City: Decatur, state: Georgia, Lat: 33.7711, Lng: -84.2963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richmond, Louisiana 32.3884 -91.1804 matched with DB +City: Richmond, state: Virginia, Lat: 37.5295, Lng: -77.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Louisiana 32.3884 -91.1804 matched with DB +City: Richmond, state: Indiana, Lat: 39.8318, Lng: -84.8905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Louisiana 32.3884 -91.1804 matched with DB +City: Richmond, state: Kentucky, Lat: 37.7307, Lng: -84.2925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Louisiana 32.3884 -91.1804 matched with DB +City: Richmond, state: California, Lat: 37.9477, Lng: -122.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richmond, Louisiana 32.3884 -91.1804 matched with DB +City: Richmond, state: Texas, Lat: 29.5824, Lng: -95.7563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burnsville, West Virginia 38.8579 -80.6538 matched with DB +City: Burnsville, state: Minnesota, Lat: 44.7648, Lng: -93.2793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Valley, Oregon 45.3761 -123.7952 matched with DB +City: Pleasant Valley, state: New York, Lat: 41.7697, Lng: -73.8049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Idaho 43.0521 -114.1556 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Idaho 43.0521 -114.1556 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Kansas 38.2428 -96.9289 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kansas 38.2428 -96.9289 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kansas 38.2428 -96.9289 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kansas 38.2428 -96.9289 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kansas 38.2428 -96.9289 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Kansas 38.2428 -96.9289 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Arkansas 33.2379 -91.5109 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Arkansas 33.2379 -91.5109 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Arkansas 33.2379 -91.5109 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Arkansas 33.2379 -91.5109 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springville, California 36.1225 -118.8228 matched with DB +City: Springville, state: Utah, Lat: 40.1638, Lng: -111.6205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Ohio 40.0900 -82.6118 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Ohio 40.0900 -82.6118 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Ohio 40.0900 -82.6118 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Ohio 40.0900 -82.6118 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Alabama 32.0764 -85.5244 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caldwell, Arkansas 35.0788 -90.8135 matched with DB +City: Caldwell, state: New Jersey, Lat: 40.8389, Lng: -74.2776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Caldwell, Arkansas 35.0788 -90.8135 matched with DB +City: Caldwell, state: Idaho, Lat: 43.6453, Lng: -116.6594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Iowa 40.6389 -91.7392 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Iowa 40.6389 -91.7392 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Iowa 40.6389 -91.7392 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Iowa 40.6389 -91.7392 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Iowa 40.6389 -91.7392 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Iowa 40.6389 -91.7392 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gloucester, North Carolina 34.7292 -76.5391 matched with DB +City: Gloucester, state: Massachusetts, Lat: 42.626, Lng: -70.6897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gloucester, North Carolina 34.7292 -76.5391 matched with DB +City: Gloucester, state: New Jersey, Lat: 39.7924, Lng: -75.0363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Ohio 39.5293 -81.5068 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Ohio 39.5293 -81.5068 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Ohio 39.5293 -81.5068 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyandotte, Oklahoma 36.8019 -94.7244 matched with DB +City: Wyandotte, state: Michigan, Lat: 42.2113, Lng: -83.1558, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Wisconsin 43.7855 -91.0436 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Idaho 42.1118 -111.9779 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Idaho 42.1118 -111.9779 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Idaho 42.1118 -111.9779 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burke, Texas 31.2345 -94.7665 matched with DB +City: Burke, state: Virginia, Lat: 38.7773, Lng: -77.2633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, Pennsylvania 41.0670 -77.6060 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coatesville, Indiana 39.6881 -86.6698 matched with DB +City: Coatesville, state: Pennsylvania, Lat: 39.9849, Lng: -75.82, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newton, Georgia 31.3167 -84.3379 matched with DB +City: Newton, state: Massachusetts, Lat: 42.3316, Lng: -71.2085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Georgia 31.3167 -84.3379 matched with DB +City: Newton, state: Kansas, Lat: 38.0368, Lng: -97.3449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Georgia 31.3167 -84.3379 matched with DB +City: Newton, state: Iowa, Lat: 41.6963, Lng: -93.0403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newton, Georgia 31.3167 -84.3379 matched with DB +City: Newton, state: North Carolina, Lat: 35.663, Lng: -81.2335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, Illinois 39.4555 -87.9963 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Illinois 39.4555 -87.9963 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Illinois 39.4555 -87.9963 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Missouri 37.1973 -89.7392 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Pennsylvania 41.1955 -76.3847 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Ohio 39.4016 -83.9830 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Ohio 39.4016 -83.9830 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Ohio 39.4016 -83.9830 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Missouri 39.1383 -93.9861 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Missouri 39.1383 -93.9861 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Utah 39.3494 -110.8556 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Utah 39.3494 -110.8556 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Utah 39.3494 -110.8556 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Milford, West Virginia 39.2045 -80.4034 matched with DB +City: West Milford, state: New Jersey, Lat: 41.106, Lng: -74.3914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, Arkansas 33.0993 -93.6569 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Arkansas 35.0236 -94.3799 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Arkansas 35.0236 -94.3799 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Arkansas 35.0236 -94.3799 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Falls, Alabama 31.3525 -86.5412 matched with DB +City: River Falls, state: Wisconsin, Lat: 44.8609, Lng: -92.6247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carlisle, Indiana 38.9608 -87.4014 matched with DB +City: Carlisle, state: Pennsylvania, Lat: 40.2, Lng: -77.2034, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hatfield, Arkansas 34.4861 -94.3792 matched with DB +City: Hatfield, state: Pennsylvania, Lat: 40.2758, Lng: -75.2895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Missouri 40.5238 -92.5314 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Missouri 40.5238 -92.5314 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Missouri 40.5238 -92.5314 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Missouri 40.5238 -92.5314 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Missouri 40.5238 -92.5314 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Missouri 40.5238 -92.5314 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker, California 38.5185 -119.4730 matched with DB +City: Walker, state: Michigan, Lat: 42.9853, Lng: -85.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, West Virginia 39.0041 -82.0393 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, West Virginia 39.0041 -82.0393 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dearborn, Missouri 39.5252 -94.7738 matched with DB +City: Dearborn, state: Michigan, Lat: 42.3127, Lng: -83.213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Illinois 41.3866 -88.7969 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Illinois 41.3866 -88.7969 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Illinois 41.3866 -88.7969 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Iowa 41.1855 -91.9936 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Iowa 41.1855 -91.9936 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Iowa 41.1855 -91.9936 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Iowa 41.1855 -91.9936 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerville, Pennsylvania 41.1163 -79.1880 matched with DB +City: Summerville, state: South Carolina, Lat: 33.0016, Lng: -80.1799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edison, Ohio 40.5582 -82.8632 matched with DB +City: Edison, state: New Jersey, Lat: 40.536, Lng: -74.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Pennsylvania 40.5615 -79.2997 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Pennsylvania 40.5615 -79.2997 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Pennsylvania 40.5615 -79.2997 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Pennsylvania 40.5615 -79.2997 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Pennsylvania 40.5615 -79.2997 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Pennsylvania 40.5615 -79.2997 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Iowa 40.6715 -92.1619 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Iowa 40.6715 -92.1619 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Iowa 40.6715 -92.1619 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Iowa 40.6715 -92.1619 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Iowa 40.6715 -92.1619 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Iowa 40.6715 -92.1619 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami, Texas 35.6923 -100.6417 matched with DB +City: Miami, state: Florida, Lat: 25.784, Lng: -80.2101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Miami, Texas 35.6923 -100.6417 matched with DB +City: Miami, state: Oklahoma, Lat: 36.8878, Lng: -94.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, West Virginia 39.8279 -80.5692 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robinson, Pennsylvania 40.4033 -79.1403 matched with DB +City: Robinson, state: Texas, Lat: 31.4501, Lng: -97.1201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Robinson, Pennsylvania 40.4033 -79.1403 matched with DB +City: Robinson, state: Pennsylvania, Lat: 40.4578, Lng: -80.1334, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Tennessee 35.0627 -86.8957 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beacon, Iowa 41.2745 -92.6814 matched with DB +City: Beacon, state: New York, Lat: 41.5036, Lng: -73.9655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Oregon 45.4583 -123.7927 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delhi, Iowa 42.4303 -91.3307 matched with DB +City: Delhi, state: California, Lat: 37.4306, Lng: -120.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Wisconsin 42.9001 -90.4337 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Wisconsin 42.9001 -90.4337 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardner, Florida 27.3537 -81.7895 matched with DB +City: Gardner, state: Massachusetts, Lat: 42.5845, Lng: -71.9868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gardner, Florida 27.3537 -81.7895 matched with DB +City: Gardner, state: Kansas, Lat: 38.8122, Lng: -94.9275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mexico, Pennsylvania 40.5417 -77.3583 matched with DB +City: Mexico, state: Missouri, Lat: 39.1625, Lng: -91.8712, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Iowa 41.5370 -90.4640 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Iowa 41.5370 -90.4640 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Iowa 41.5370 -90.4640 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clermont, Iowa 42.9999 -91.6523 matched with DB +City: Clermont, state: Florida, Lat: 28.5325, Lng: -81.7208, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntington, Arkansas 35.0814 -94.2663 matched with DB +City: Huntington, state: Virginia, Lat: 38.7916, Lng: -77.074, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Arkansas 35.0814 -94.2663 matched with DB +City: Huntington, state: West Virginia, Lat: 38.4109, Lng: -82.4345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Arkansas 35.0814 -94.2663 matched with DB +City: Huntington, state: Indiana, Lat: 40.881, Lng: -85.5063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntington, Arkansas 35.0814 -94.2663 matched with DB +City: Huntington, state: New York, Lat: 40.8521, Lng: -73.3823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Oregon 45.7662 -118.5643 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edison, California 35.3473 -118.8698 matched with DB +City: Edison, state: New Jersey, Lat: 40.536, Lng: -74.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Illinois 40.7078 -89.6995 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Illinois 40.7078 -89.6995 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Illinois 40.2922 -90.9162 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Illinois 40.2922 -90.9162 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Illinois 40.2922 -90.9162 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Illinois 40.2922 -90.9162 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Illinois 40.2922 -90.9162 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Illinois 40.2922 -90.9162 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestview, Kentucky 39.0246 -84.4157 matched with DB +City: Crestview, state: Florida, Lat: 30.7477, Lng: -86.5785, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Louisiana 30.8670 -92.7987 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhart, Illinois 40.0136 -89.4727 matched with DB +City: Elkhart, state: Indiana, Lat: 41.6916, Lng: -85.9627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, South Carolina 33.5580 -80.7150 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, West Virginia 37.5905 -80.5419 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, West Virginia 37.5905 -80.5419 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, West Virginia 37.5905 -80.5419 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Illinois 37.9024 -88.1279 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Illinois 37.9024 -88.1279 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Minnesota 44.5260 -93.0198 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Minnesota 44.5260 -93.0198 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hermitage, Arkansas 33.4474 -92.1714 matched with DB +City: Hermitage, state: Pennsylvania, Lat: 41.2305, Lng: -80.4413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena, South Carolina 34.2807 -81.6445 matched with DB +City: Helena, state: Alabama, Lat: 33.2837, Lng: -86.8791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Helena, South Carolina 34.2807 -81.6445 matched with DB +City: Helena, state: Montana, Lat: 46.5965, Lng: -112.0202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maynard, Iowa 42.7738 -91.8774 matched with DB +City: Maynard, state: Massachusetts, Lat: 42.4264, Lng: -71.4561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain, Minnesota 43.7426 -92.1342 matched with DB +City: Fountain, state: Colorado, Lat: 38.6886, Lng: -104.6829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Pennsylvania 40.9428 -76.1400 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Pennsylvania 40.9428 -76.1400 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Pennsylvania 40.9428 -76.1400 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Oregon 45.8165 -118.4258 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Oregon 45.8165 -118.4258 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Oregon 45.8165 -118.4258 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, South Dakota 43.7127 -98.2612 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, South Dakota 43.7127 -98.2612 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, South Dakota 43.7127 -98.2612 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, South Dakota 43.7127 -98.2612 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, South Dakota 43.7127 -98.2612 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Michigan 44.0325 -84.0194 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Michigan 44.0325 -84.0194 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Michigan 44.0325 -84.0194 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, West Virginia 39.3328 -81.3813 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, West Virginia 39.3328 -81.3813 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wasco, Oregon 45.5917 -120.6974 matched with DB +City: Wasco, state: California, Lat: 35.5938, Lng: -119.3671, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, South Carolina 33.4967 -81.2795 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Oklahoma 36.2318 -96.9313 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Utah 41.2602 -111.7740 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Utah 41.2602 -111.7740 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson City, Montana 46.3779 -112.0305 matched with DB +City: Jefferson City, state: Missouri, Lat: 38.5676, Lng: -92.1759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Michigan 42.7268 -85.1344 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Park Ridge, Wisconsin 44.5200 -89.5463 matched with DB +City: Park Ridge, state: New Jersey, Lat: 41.0352, Lng: -74.0423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Park Ridge, Wisconsin 44.5200 -89.5463 matched with DB +City: Park Ridge, state: Illinois, Lat: 42.0125, Lng: -87.8436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, Virginia 36.9326 -82.4846 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, Virginia 36.9326 -82.4846 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawfordsville, Arkansas 35.2267 -90.3241 matched with DB +City: Crawfordsville, state: Indiana, Lat: 40.0428, Lng: -86.8976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White, South Dakota 44.4359 -96.6460 matched with DB +City: White, state: Pennsylvania, Lat: 40.621, Lng: -79.1513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayland, Missouri 40.3963 -91.5755 matched with DB +City: Wayland, state: Massachusetts, Lat: 42.3586, Lng: -71.3594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Missouri 36.9631 -93.7936 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Missouri 36.9631 -93.7936 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Racine, Minnesota 43.7755 -92.4810 matched with DB +City: Racine, state: Wisconsin, Lat: 42.7274, Lng: -87.8135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewer, Missouri 37.7836 -89.9180 matched with DB +City: Brewer, state: Maine, Lat: 44.7835, Lng: -68.7352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopewell, Illinois 40.9842 -89.4572 matched with DB +City: Hopewell, state: Virginia, Lat: 37.2915, Lng: -77.2985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hopewell, Illinois 40.9842 -89.4572 matched with DB +City: Hopewell, state: Pennsylvania, Lat: 40.5906, Lng: -80.2731, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Wisconsin 45.9266 -88.2463 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Wisconsin 45.9266 -88.2463 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Wisconsin 45.9266 -88.2463 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Wisconsin 45.9266 -88.2463 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Wisconsin 45.9266 -88.2463 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Wisconsin 45.9266 -88.2463 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntsville, Ohio 40.4425 -83.8043 matched with DB +City: Huntsville, state: Alabama, Lat: 34.6981, Lng: -86.6412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Huntsville, Ohio 40.4425 -83.8043 matched with DB +City: Huntsville, state: Texas, Lat: 30.7009, Lng: -95.5567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewing, Virginia 36.6381 -83.4291 matched with DB +City: Ewing, state: New Jersey, Lat: 40.265, Lng: -74.8006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cecil, Wisconsin 44.8108 -88.4485 matched with DB +City: Cecil, state: Pennsylvania, Lat: 40.3147, Lng: -80.1942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, New Jersey 40.4061 -74.9758 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mattoon, Wisconsin 45.0046 -89.0411 matched with DB +City: Mattoon, state: Illinois, Lat: 39.4774, Lng: -88.3623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, Texas 31.4111 -96.5738 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Kansas 37.8962 -98.1780 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kansas 37.8962 -98.1780 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kansas 37.8962 -98.1780 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kansas 37.8962 -98.1780 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kansas 37.8962 -98.1780 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Kentucky 37.2085 -88.0603 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, Arizona 32.9175 -109.1960 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Arizona 32.9175 -109.1960 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Arizona 32.9175 -109.1960 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, Ohio 39.6016 -82.0876 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, New Mexico 34.4289 -103.6296 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Branch, Pennsylvania 40.0984 -79.8801 matched with DB +City: Long Branch, state: New Jersey, Lat: 40.2965, Lng: -73.9915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Missouri 39.3693 -90.9049 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Missouri 39.3693 -90.9049 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Missouri 39.3693 -90.9049 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Florida 29.8643 -82.1380 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Florida 29.8643 -82.1380 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Florida 29.8643 -82.1380 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oceanside, Oregon 45.4549 -123.9610 matched with DB +City: Oceanside, state: New York, Lat: 40.6328, Lng: -73.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oceanside, Oregon 45.4549 -123.9610 matched with DB +City: Oceanside, state: California, Lat: 33.2247, Lng: -117.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Utah 40.5838 -111.2358 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Stephens, Alabama 31.5474 -88.0556 matched with DB +City: St. Stephens, state: North Carolina, Lat: 35.7642, Lng: -81.2746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spokane, Louisiana 31.7130 -91.4453 matched with DB +City: Spokane, state: Washington, Lat: 47.6671, Lng: -117.433, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, North Carolina 35.3500 -83.2188 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, North Carolina 35.3500 -83.2188 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, North Carolina 35.3500 -83.2188 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Minnesota 45.4022 -93.2711 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory, Mississippi 32.3167 -89.0217 matched with DB +City: Hickory, state: North Carolina, Lat: 35.741, Lng: -81.3223, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly Hills, Missouri 38.6979 -90.2901 matched with DB +City: Beverly Hills, state: Michigan, Lat: 42.522, Lng: -83.2423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Missouri 38.6979 -90.2901 matched with DB +City: Beverly Hills, state: Florida, Lat: 28.9176, Lng: -82.4542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beverly Hills, Missouri 38.6979 -90.2901 matched with DB +City: Beverly Hills, state: California, Lat: 34.0786, Lng: -118.4021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Indiana 39.6458 -85.5797 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Indiana 39.6458 -85.5797 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Indiana 39.6458 -85.5797 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Indiana 39.6458 -85.5797 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Indiana 39.6458 -85.5797 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bell, Florida 29.7568 -82.8620 matched with DB +City: Bell, state: California, Lat: 33.9801, Lng: -118.1798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Texas 32.2813 -96.5497 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charter Oak, Iowa 42.0682 -95.5897 matched with DB +City: Charter Oak, state: California, Lat: 34.1025, Lng: -117.8564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phillipsburg, Georgia 31.4389 -83.5203 matched with DB +City: Phillipsburg, state: New Jersey, Lat: 40.6894, Lng: -75.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marquette, Iowa 43.0443 -91.1920 matched with DB +City: Marquette, state: Michigan, Lat: 46.544, Lng: -87.4082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vermillion, Minnesota 44.6736 -92.9643 matched with DB +City: Vermillion, state: South Dakota, Lat: 42.7811, Lng: -96.9256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesville, Illinois 40.2412 -89.1244 matched with DB +City: Waynesville, state: North Carolina, Lat: 35.4854, Lng: -82.9996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, Iowa 42.9442 -93.3870 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thompson, Iowa 43.3700 -93.7747 matched with DB +City: Thompson, state: New York, Lat: 41.6474, Lng: -74.6745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Baltimore, New York 42.4489 -73.7941 matched with DB +City: New Baltimore, state: Michigan, Lat: 42.6904, Lng: -82.7398, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Baltimore, New York 42.4489 -73.7941 matched with DB +City: New Baltimore, state: Virginia, Lat: 38.7495, Lng: -77.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Colorado 38.0303 -107.3106 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Louisiana 30.4255 -90.5444 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, Ohio 40.2109 -81.2686 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Ohio 40.2109 -81.2686 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Ohio 40.2109 -81.2686 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, Ohio 40.2109 -81.2686 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Wyoming 42.9028 -108.5819 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wyoming 42.9028 -108.5819 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wyoming 42.9028 -108.5819 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wyoming 42.9028 -108.5819 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Wyoming 42.9028 -108.5819 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howard, Ohio 40.4092 -82.3275 matched with DB +City: Howard, state: Wisconsin, Lat: 44.5703, Lng: -88.0928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Minnesota 43.5298 -91.9300 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Minnesota 43.5298 -91.9300 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Minnesota 43.5298 -91.9300 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Minnesota 43.5298 -91.9300 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Minnesota 43.5298 -91.9300 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Minnesota 43.5298 -91.9300 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Idaho 43.3489 -114.8006 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Idaho 43.3489 -114.8006 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Idaho 43.3489 -114.8006 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Idaho 43.3489 -114.8006 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwich, Kansas 37.4572 -97.8480 matched with DB +City: Norwich, state: Connecticut, Lat: 41.5495, Lng: -72.0882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Billings, Oklahoma 36.5316 -97.4352 matched with DB +City: Billings, state: Montana, Lat: 45.7891, Lng: -108.5526, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westphalia, Missouri 38.4414 -92.0005 matched with DB +City: Westphalia, state: Maryland, Lat: 38.8356, Lng: -76.8298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley Falls, New York 42.9006 -73.5627 matched with DB +City: Valley Falls, state: Rhode Island, Lat: 41.9233, Lng: -71.3924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, South Dakota 43.1301 -96.4556 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, South Dakota 43.1301 -96.4556 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, South Dakota 43.1301 -96.4556 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, South Dakota 43.1301 -96.4556 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, South Dakota 43.1301 -96.4556 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fargo, Georgia 30.6881 -82.5721 matched with DB +City: Fargo, state: North Dakota, Lat: 46.8651, Lng: -96.8292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hull, Illinois 39.7087 -91.2033 matched with DB +City: Hull, state: Massachusetts, Lat: 42.2861, Lng: -70.8835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, Texas 30.3985 -96.5499 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockhart, South Carolina 34.7922 -81.4613 matched with DB +City: Lockhart, state: Florida, Lat: 28.627, Lng: -81.4354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockhart, South Carolina 34.7922 -81.4613 matched with DB +City: Lockhart, state: Texas, Lat: 29.8785, Lng: -97.6831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brockton, Montana 48.1525 -104.9066 matched with DB +City: Brockton, state: Massachusetts, Lat: 42.0821, Lng: -71.0242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murray, Nebraska 40.9163 -95.9267 matched with DB +City: Murray, state: Kentucky, Lat: 36.6146, Lng: -88.3207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Murray, Nebraska 40.9163 -95.9267 matched with DB +City: Murray, state: Utah, Lat: 40.6498, Lng: -111.8874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawford, Colorado 38.7051 -107.6097 matched with DB +City: Crawford, state: New York, Lat: 41.5685, Lng: -74.3169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livermore, Iowa 42.8681 -94.1841 matched with DB +City: Livermore, state: California, Lat: 37.6868, Lng: -121.7607, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Kansas 38.3084 -95.9566 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Kansas 38.3084 -95.9566 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Kansas 38.3084 -95.9566 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Racine, West Virginia 38.1398 -81.6540 matched with DB +City: Racine, state: Wisconsin, Lat: 42.7274, Lng: -87.8135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsville, Ohio 39.3227 -83.8116 matched with DB +City: Martinsville, state: Virginia, Lat: 36.6826, Lng: -79.8636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Ohio 39.3227 -83.8116 matched with DB +City: Martinsville, state: Indiana, Lat: 39.4149, Lng: -86.4316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinsville, Ohio 39.3227 -83.8116 matched with DB +City: Martinsville, state: New Jersey, Lat: 40.603, Lng: -74.5751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Arkansas 36.4555 -93.9757 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flat Rock, Illinois 38.9037 -87.6734 matched with DB +City: Flat Rock, state: Michigan, Lat: 42.0991, Lng: -83.2716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selma, Virginia 37.8041 -79.8495 matched with DB +City: Selma, state: Alabama, Lat: 32.4166, Lng: -87.0336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Virginia 37.8041 -79.8495 matched with DB +City: Selma, state: California, Lat: 36.5715, Lng: -119.6143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Selma, Virginia 37.8041 -79.8495 matched with DB +City: Selma, state: Texas, Lat: 29.5866, Lng: -98.3132, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, California 38.6750 -121.9702 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, California 38.6750 -121.9702 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, California 38.6750 -121.9702 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, California 38.6750 -121.9702 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, California 38.6750 -121.9702 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hot Springs, Virginia 38.0013 -79.8239 matched with DB +City: Hot Springs, state: Arkansas, Lat: 34.4892, Lng: -93.0501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Utah 37.1816 -113.0049 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Utah 37.1816 -113.0049 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Utah 37.1816 -113.0049 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sulphur Springs, Indiana 39.9991 -85.4392 matched with DB +City: Sulphur Springs, state: Texas, Lat: 33.1421, Lng: -95.6122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Missouri 37.8436 -93.1676 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Missouri 37.8436 -93.1676 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Missouri 37.8436 -93.1676 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Idaho 43.6951 -112.0131 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Idaho 43.6951 -112.0131 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gates, Oregon 44.7561 -122.4201 matched with DB +City: Gates, state: New York, Lat: 43.1514, Lng: -77.713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Texas 33.3192 -101.7274 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blaine, Ohio 40.0688 -80.8095 matched with DB +City: Blaine, state: Minnesota, Lat: 45.1696, Lng: -93.2077, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, Arkansas 34.9899 -93.2980 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, Arkansas 34.9899 -93.2980 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Alabama 31.1797 -85.2790 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Alabama 31.1797 -85.2790 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prichard, West Virginia 38.2362 -82.6028 matched with DB +City: Prichard, state: Alabama, Lat: 30.7735, Lng: -88.1301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Latham, Illinois 39.9669 -89.1623 matched with DB +City: Latham, state: New York, Lat: 42.7427, Lng: -73.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Oregon 44.0325 -123.8609 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Cloud, Wisconsin 43.8245 -88.1687 matched with DB +City: St. Cloud, state: Minnesota, Lat: 45.534, Lng: -94.1718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Cloud, Wisconsin 43.8245 -88.1687 matched with DB +City: St. Cloud, state: Florida, Lat: 28.2363, Lng: -81.2779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Pablo, New Mexico 32.2507 -106.7626 matched with DB +City: San Pablo, state: California, Lat: 37.9629, Lng: -122.3426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Kansas 39.5682 -97.2808 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Kansas 39.5682 -97.2808 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, Michigan 41.9997 -85.2394 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, Michigan 41.9997 -85.2394 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Missouri 39.0964 -93.5478 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Alabama 31.7182 -86.1242 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Alabama 31.7182 -86.1242 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Iowa 42.7488 -91.6710 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Iowa 42.7488 -91.6710 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Iowa 42.7488 -91.6710 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Iowa 42.7488 -91.6710 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Iowa 42.7488 -91.6710 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage, Ohio 41.3232 -83.6468 matched with DB +City: Portage, state: Wisconsin, Lat: 43.5489, Lng: -89.4658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Ohio 41.3232 -83.6468 matched with DB +City: Portage, state: Michigan, Lat: 42.2, Lng: -85.5906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Ohio 41.3232 -83.6468 matched with DB +City: Portage, state: Indiana, Lat: 41.5856, Lng: -87.1797, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Converse, Louisiana 31.7795 -93.7001 matched with DB +City: Converse, state: Texas, Lat: 29.5091, Lng: -98.3084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, Pennsylvania 41.8574 -76.3415 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, Pennsylvania 41.8574 -76.3415 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Ohio 40.6364 -82.9695 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Missouri 37.1284 -90.4472 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, North Carolina 34.6562 -78.7231 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, North Carolina 34.6562 -78.7231 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, North Carolina 34.6562 -78.7231 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Nebraska 42.4144 -96.8431 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carroll, Ohio 39.8025 -82.7062 matched with DB +City: Carroll, state: Iowa, Lat: 42.0699, Lng: -94.8646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Kentucky 38.2167 -85.6703 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Kentucky 38.2167 -85.6703 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bakersfield, Vermont 44.7821 -72.8032 matched with DB +City: Bakersfield, state: California, Lat: 35.3529, Lng: -119.0359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Lake, Indiana 41.2742 -85.4993 matched with DB +City: Big Lake, state: Minnesota, Lat: 45.3417, Lng: -93.7434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Nebraska 40.1747 -101.0136 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Nebraska 40.1747 -101.0136 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Nebraska 40.1747 -101.0136 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewistown, Missouri 40.0848 -91.8136 matched with DB +City: Lewistown, state: Pennsylvania, Lat: 40.5964, Lng: -77.573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coram, Montana 48.4306 -114.0444 matched with DB +City: Coram, state: New York, Lat: 40.8812, Lng: -73.0059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Georgia 33.0917 -84.4387 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Georgia 33.0917 -84.4387 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Georgia 33.0917 -84.4387 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Georgia 33.0917 -84.4387 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Georgia 33.0917 -84.4387 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Georgia 33.0917 -84.4387 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainville, Indiana 38.8048 -87.1515 matched with DB +City: Plainville, state: Massachusetts, Lat: 42.0141, Lng: -71.3364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearfield, Iowa 40.8028 -94.4836 matched with DB +City: Clearfield, state: Utah, Lat: 41.103, Lng: -112.0238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewing, Missouri 40.0088 -91.7147 matched with DB +City: Ewing, state: New Jersey, Lat: 40.265, Lng: -74.8006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davis, Illinois 42.4215 -89.4156 matched with DB +City: Davis, state: California, Lat: 38.5553, Lng: -121.737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, New York 41.9399 -74.9123 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisburg, Louisiana 30.3659 -90.1052 matched with DB +City: Lewisburg, state: Tennessee, Lat: 35.451, Lng: -86.7901, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, North Carolina 35.2155 -77.4338 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, North Carolina 35.2155 -77.4338 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, North Carolina 35.2155 -77.4338 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, North Carolina 35.2155 -77.4338 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, North Carolina 35.2155 -77.4338 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centralia, Kansas 39.7243 -96.1301 matched with DB +City: Centralia, state: Illinois, Lat: 38.5224, Lng: -89.1232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centralia, Kansas 39.7243 -96.1301 matched with DB +City: Centralia, state: Washington, Lat: 46.7223, Lng: -122.9696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Draper, Virginia 37.0012 -80.7372 matched with DB +City: Draper, state: Utah, Lat: 40.4957, Lng: -111.8605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pinehurst, Georgia 32.1956 -83.7596 matched with DB +City: Pinehurst, state: North Carolina, Lat: 35.1922, Lng: -79.4684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hills, Kentucky 38.2158 -85.5834 matched with DB +City: Forest Hills, state: Michigan, Lat: 42.9577, Lng: -85.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buford, Ohio 39.0720 -83.8393 matched with DB +City: Buford, state: Georgia, Lat: 34.1192, Lng: -83.9903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowie, Arizona 32.3247 -109.4843 matched with DB +City: Bowie, state: Maryland, Lat: 38.9549, Lng: -76.7406, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leeds, North Dakota 48.2878 -99.4346 matched with DB +City: Leeds, state: Alabama, Lat: 33.5436, Lng: -86.5639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charleston, Utah 40.4661 -111.4600 matched with DB +City: Charleston, state: West Virginia, Lat: 38.3484, Lng: -81.6322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Utah 40.4661 -111.4600 matched with DB +City: Charleston, state: Illinois, Lat: 39.4842, Lng: -88.1781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charleston, Utah 40.4661 -111.4600 matched with DB +City: Charleston, state: South Carolina, Lat: 32.8168, Lng: -79.9687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, Idaho 48.0152 -116.9928 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Clara, Puerto Rico 18.2110 -66.1320 matched with DB +City: Santa Clara, state: California, Lat: 37.3646, Lng: -121.968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Santa Clara, Puerto Rico 18.2110 -66.1320 matched with DB +City: Santa Clara, state: Oregon, Lat: 44.1154, Lng: -123.1344, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Alabama 31.7916 -87.7396 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Alabama 31.7916 -87.7396 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springboro, Pennsylvania 41.8006 -80.3717 matched with DB +City: Springboro, state: Ohio, Lat: 39.5615, Lng: -84.2348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bon Air, Tennessee 35.9359 -85.3644 matched with DB +City: Bon Air, state: Virginia, Lat: 37.5187, Lng: -77.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matthews, Indiana 40.3874 -85.4980 matched with DB +City: Matthews, state: North Carolina, Lat: 35.1195, Lng: -80.7101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Mississippi 33.5056 -89.9218 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Mississippi 33.5056 -89.9218 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, New York 41.7799 -74.9298 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andover, Illinois 41.2949 -90.2907 matched with DB +City: Andover, state: Minnesota, Lat: 45.2571, Lng: -93.3265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Illinois 41.2949 -90.2907 matched with DB +City: Andover, state: Kansas, Lat: 37.6873, Lng: -97.1352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Illinois 41.2949 -90.2907 matched with DB +City: Andover, state: Massachusetts, Lat: 42.6466, Lng: -71.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Badger, Minnesota 48.7768 -96.0213 matched with DB +City: Badger, state: Alaska, Lat: 64.8006, Lng: -147.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Utah 40.3589 -110.2881 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grandview, Iowa 41.2771 -91.1880 matched with DB +City: Grandview, state: Missouri, Lat: 38.8802, Lng: -94.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grandview, Iowa 41.2771 -91.1880 matched with DB +City: Grandview, state: Washington, Lat: 46.2443, Lng: -119.9092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Nebraska 41.8536 -98.0811 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Missouri 38.2586 -93.9827 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Three Lakes, Wisconsin 45.8047 -89.1708 matched with DB +City: Three Lakes, state: Florida, Lat: 25.6415, Lng: -80.4, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chattanooga, Oklahoma 34.4238 -98.6540 matched with DB +City: Chattanooga, state: Tennessee, Lat: 35.066, Lng: -85.2481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Indiana 39.9509 -84.9964 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irving, Illinois 39.2055 -89.4052 matched with DB +City: Irving, state: Texas, Lat: 32.8583, Lng: -96.9702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampton, Nebraska 40.8812 -97.8876 matched with DB +City: Hampton, state: Virginia, Lat: 37.0551, Lng: -76.363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Nebraska 40.8812 -97.8876 matched with DB +City: Hampton, state: New Hampshire, Lat: 42.9391, Lng: -70.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hampton, Nebraska 40.8812 -97.8876 matched with DB +City: Hampton, state: Pennsylvania, Lat: 40.5844, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Circleville, Utah 38.1684 -112.2716 matched with DB +City: Circleville, state: Ohio, Lat: 39.6063, Lng: -82.9334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Rock, Iowa 43.4471 -95.8804 matched with DB +City: Little Rock, state: Arkansas, Lat: 34.7256, Lng: -92.3577, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malden, West Virginia 38.3008 -81.5580 matched with DB +City: Malden, state: Massachusetts, Lat: 42.4305, Lng: -71.0576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnson City, Oregon 45.4046 -122.5794 matched with DB +City: Johnson City, state: New York, Lat: 42.123, Lng: -75.9624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnson City, Oregon 45.4046 -122.5794 matched with DB +City: Johnson City, state: Tennessee, Lat: 36.3406, Lng: -82.3806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grand Junction, Tennessee 35.0500 -89.1889 matched with DB +City: Grand Junction, state: Colorado, Lat: 39.0877, Lng: -108.5673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Washington 47.4515 -117.1307 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Angeles, Texas 26.4947 -97.7862 matched with DB +City: Los Angeles, state: California, Lat: 34.1141, Lng: -118.4068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamsburg, Kansas 38.4807 -95.4681 matched with DB +City: Williamsburg, state: Virginia, Lat: 37.2693, Lng: -76.7076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Illinois 42.0416 -88.5508 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarence, Louisiana 31.8198 -93.0292 matched with DB +City: Clarence, state: New York, Lat: 43.0196, Lng: -78.6375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, Illinois 38.9222 -88.6640 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, Illinois 38.9222 -88.6640 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harlingen, New Jersey 40.4502 -74.6581 matched with DB +City: Harlingen, state: Texas, Lat: 26.1916, Lng: -97.6977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ontario, Indiana 41.7023 -85.3825 matched with DB +City: Ontario, state: Oregon, Lat: 44.0259, Lng: -116.976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Indiana 41.7023 -85.3825 matched with DB +City: Ontario, state: California, Lat: 34.0393, Lng: -117.6064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Indiana 41.7023 -85.3825 matched with DB +City: Ontario, state: New York, Lat: 43.2408, Lng: -77.314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fontana, Kansas 38.4239 -94.8441 matched with DB +City: Fontana, state: California, Lat: 34.0968, Lng: -117.4599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennedy, Alabama 33.5810 -87.9859 matched with DB +City: Kennedy, state: Pennsylvania, Lat: 40.4768, Lng: -80.1028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northport, Michigan 45.1303 -85.6171 matched with DB +City: Northport, state: Alabama, Lat: 33.2586, Lng: -87.5993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bixby, Texas 26.1400 -97.8562 matched with DB +City: Bixby, state: Oklahoma, Lat: 35.9454, Lng: -95.8776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, North Carolina 35.3259 -79.2540 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deming, Washington 48.8312 -122.2390 matched with DB +City: Deming, state: New Mexico, Lat: 32.2631, Lng: -107.7525, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manorville, Pennsylvania 40.7879 -79.5205 matched with DB +City: Manorville, state: New York, Lat: 40.8574, Lng: -72.7915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northport, Wisconsin 44.4082 -88.8038 matched with DB +City: Northport, state: Alabama, Lat: 33.2586, Lng: -87.5993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Delaware 38.9174 -75.5039 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellevue, Texas 33.6335 -98.0164 matched with DB +City: Bellevue, state: Wisconsin, Lat: 44.4592, Lng: -87.955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Texas 33.6335 -98.0164 matched with DB +City: Bellevue, state: Nebraska, Lat: 41.1485, Lng: -95.939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellevue, Texas 33.6335 -98.0164 matched with DB +City: Bellevue, state: Washington, Lat: 47.5951, Lng: -122.1535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maynard, Arkansas 36.4214 -90.9018 matched with DB +City: Maynard, state: Massachusetts, Lat: 42.4264, Lng: -71.4561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Washington 48.5048 -119.5100 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Washington 48.5048 -119.5100 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Washington 48.5048 -119.5100 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Washington 48.5048 -119.5100 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Two Rivers, Alaska 64.8908 -147.0897 matched with DB +City: Two Rivers, state: Wisconsin, Lat: 44.1565, Lng: -87.5824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lehigh, Iowa 42.3575 -94.0535 matched with DB +City: Lehigh, state: Pennsylvania, Lat: 40.7678, Lng: -75.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsville, Pennsylvania 40.6908 -76.1807 matched with DB +City: Mechanicsville, state: Virginia, Lat: 37.6263, Lng: -77.3561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, West Virginia 39.5119 -80.2515 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, West Virginia 39.5119 -80.2515 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, West Virginia 39.5119 -80.2515 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, West Virginia 39.5119 -80.2515 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, West Virginia 39.5119 -80.2515 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, West Virginia 39.5119 -80.2515 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annapolis, Missouri 37.3605 -90.6975 matched with DB +City: Annapolis, state: Maryland, Lat: 38.9706, Lng: -76.5047, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Alabama 34.4604 -85.8767 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Alabama 34.4604 -85.8767 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Alabama 34.4604 -85.8767 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Ohio 40.6770 -81.8697 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Ohio 40.6770 -81.8697 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Iowa 42.2435 -93.0625 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Iowa 42.2435 -93.0625 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Iowa 42.2435 -93.0625 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, Virginia 37.2273 -76.9666 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, Virginia 37.2273 -76.9666 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Texas 33.1504 -97.6887 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollins, Alabama 33.1214 -86.1290 matched with DB +City: Hollins, state: Virginia, Lat: 37.3434, Lng: -79.9534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Alabama 30.9946 -87.8600 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carrollton, Indiana 39.7056 -85.8208 matched with DB +City: Carrollton, state: Georgia, Lat: 33.5818, Lng: -85.0838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Carrollton, Indiana 39.7056 -85.8208 matched with DB +City: Carrollton, state: Texas, Lat: 32.989, Lng: -96.8999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hyde Park, New Mexico 35.7112 -105.8866 matched with DB +City: Hyde Park, state: New York, Lat: 41.8011, Lng: -73.906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pelham, Tennessee 35.3342 -85.8703 matched with DB +City: Pelham, state: New York, Lat: 40.9, Lng: -73.8063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pelham, Tennessee 35.3342 -85.8703 matched with DB +City: Pelham, state: Alabama, Lat: 33.3114, Lng: -86.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pelham, Tennessee 35.3342 -85.8703 matched with DB +City: Pelham, state: New Hampshire, Lat: 42.7335, Lng: -71.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlotte, Iowa 41.9621 -90.4682 matched with DB +City: Charlotte, state: Michigan, Lat: 42.5662, Lng: -84.8304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Charlotte, Iowa 41.9621 -90.4682 matched with DB +City: Charlotte, state: North Carolina, Lat: 35.2083, Lng: -80.8303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, South Dakota 43.5194 -96.6141 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, South Dakota 43.5194 -96.6141 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, South Dakota 43.5194 -96.6141 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Mississippi 34.9540 -89.5256 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Mississippi 34.9540 -89.5256 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Mississippi 34.9540 -89.5256 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Mississippi 34.9540 -89.5256 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Mississippi 34.9540 -89.5256 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Mississippi 34.9540 -89.5256 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manvel, North Dakota 48.0727 -97.1779 matched with DB +City: Manvel, state: Texas, Lat: 29.4798, Lng: -95.3635, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, Kansas 38.6912 -97.0765 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chula Vista, Texas 28.6563 -99.8077 matched with DB +City: Chula Vista, state: California, Lat: 32.6281, Lng: -117.0144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amsterdam, Ohio 40.4718 -80.9217 matched with DB +City: Amsterdam, state: New York, Lat: 42.942, Lng: -74.1906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mayfield, Utah 39.1193 -111.7079 matched with DB +City: Mayfield, state: Kentucky, Lat: 36.7371, Lng: -88.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrenceville, Ohio 39.9842 -83.8766 matched with DB +City: Lawrenceville, state: Georgia, Lat: 33.9523, Lng: -83.9932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halfway, Oregon 44.8781 -117.1097 matched with DB +City: Halfway, state: Maryland, Lat: 39.6162, Lng: -77.7703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawford, Mississippi 33.3023 -88.6255 matched with DB +City: Crawford, state: New York, Lat: 41.5685, Lng: -74.3169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ontario, Wisconsin 43.7222 -90.5941 matched with DB +City: Ontario, state: Oregon, Lat: 44.0259, Lng: -116.976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Wisconsin 43.7222 -90.5941 matched with DB +City: Ontario, state: California, Lat: 34.0393, Lng: -117.6064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ontario, Wisconsin 43.7222 -90.5941 matched with DB +City: Ontario, state: New York, Lat: 43.2408, Lng: -77.314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Texas 32.3820 -94.5912 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Texas 32.3820 -94.5912 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Texas 32.3820 -94.5912 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bend, California 40.2561 -122.2095 matched with DB +City: Bend, state: Oregon, Lat: 44.0563, Lng: -121.3095, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cary, Mississippi 32.8056 -90.9247 matched with DB +City: Cary, state: Illinois, Lat: 42.2129, Lng: -88.2494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cary, Mississippi 32.8056 -90.9247 matched with DB +City: Cary, state: North Carolina, Lat: 35.7819, Lng: -78.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sacramento, Kentucky 37.4160 -87.2678 matched with DB +City: Sacramento, state: California, Lat: 38.5677, Lng: -121.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewster, Kansas 39.3631 -101.3771 matched with DB +City: Brewster, state: Massachusetts, Lat: 41.7463, Lng: -70.0676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, South Carolina 34.9520 -81.3435 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, South Carolina 34.9520 -81.3435 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shawnee, Ohio 39.6063 -82.2046 matched with DB +City: Shawnee, state: Kansas, Lat: 39.0158, Lng: -94.8076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shawnee, Ohio 39.6063 -82.2046 matched with DB +City: Shawnee, state: Oklahoma, Lat: 35.3531, Lng: -96.9647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, West Virginia 39.4450 -78.6976 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Georgia 33.8701 -83.1102 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Georgia 33.8701 -83.1102 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Georgia 33.8701 -83.1102 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Georgia 33.8701 -83.1102 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Georgia 33.8701 -83.1102 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, Maryland 38.1016 -75.8074 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, Maryland 38.1016 -75.8074 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Audubon, Minnesota 46.8645 -95.9841 matched with DB +City: Audubon, state: New Jersey, Lat: 39.8906, Lng: -75.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Audubon, Minnesota 46.8645 -95.9841 matched with DB +City: Audubon, state: Pennsylvania, Lat: 40.1304, Lng: -75.428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, Kentucky 37.5667 -82.7604 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Georgia 32.6032 -84.4573 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eustis, Nebraska 40.6645 -100.0296 matched with DB +City: Eustis, state: Florida, Lat: 28.8563, Lng: -81.6771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, California 38.2561 -119.2123 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, California 38.2561 -119.2123 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Unity, Wisconsin 44.8511 -90.3131 matched with DB +City: Unity, state: Pennsylvania, Lat: 40.2811, Lng: -79.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winthrop, Washington 48.4715 -120.1792 matched with DB +City: Winthrop, state: Massachusetts, Lat: 42.3761, Lng: -70.9846, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerfield, Illinois 38.5957 -89.7497 matched with DB +City: Summerfield, state: North Carolina, Lat: 36.1973, Lng: -79.8997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summerfield, Illinois 38.5957 -89.7497 matched with DB +City: Summerfield, state: Maryland, Lat: 38.9042, Lng: -76.8678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmira, Oregon 44.0700 -123.3588 matched with DB +City: Elmira, state: New York, Lat: 42.0938, Lng: -76.8097, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Richmond, Indiana 40.1942 -86.9779 matched with DB +City: New Richmond, state: Wisconsin, Lat: 45.125, Lng: -92.5377, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpena, South Dakota 44.1829 -98.3683 matched with DB +City: Alpena, state: Michigan, Lat: 45.074, Lng: -83.4402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Nebraska 40.9490 -99.5081 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newington, Georgia 32.5887 -81.5063 matched with DB +City: Newington, state: Virginia, Lat: 38.7358, Lng: -77.1993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Washington 47.3475 -123.0951 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Washington 47.3475 -123.0951 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Washington 47.3475 -123.0951 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasanton, Nebraska 40.9698 -99.0876 matched with DB +City: Pleasanton, state: California, Lat: 37.6663, Lng: -121.8805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasanton, Nebraska 40.9698 -99.0876 matched with DB +City: Pleasanton, state: Texas, Lat: 28.9642, Lng: -98.4957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Quincy, Ohio 40.2956 -83.9686 matched with DB +City: Quincy, state: Massachusetts, Lat: 42.2506, Lng: -71.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Quincy, Ohio 40.2956 -83.9686 matched with DB +City: Quincy, state: Illinois, Lat: 39.9336, Lng: -91.3799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, Maryland 38.4811 -75.8318 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, Maryland 38.4811 -75.8318 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boston, Virginia 37.6039 -75.8437 matched with DB +City: Boston, state: Massachusetts, Lat: 42.3188, Lng: -71.0852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vineland, Colorado 38.2447 -104.4599 matched with DB +City: Vineland, state: New Jersey, Lat: 39.4653, Lng: -74.9981, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Round Lake, Minnesota 43.5373 -95.4701 matched with DB +City: Round Lake, state: Illinois, Lat: 42.3435, Lng: -88.1059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Ohio 39.8108 -83.1687 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Ohio 39.8108 -83.1687 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpena, Arkansas 36.2897 -93.3037 matched with DB +City: Alpena, state: Michigan, Lat: 45.074, Lng: -83.4402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Georgia 31.5103 -83.7369 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keene, California 35.2335 -118.6098 matched with DB +City: Keene, state: New Hampshire, Lat: 42.9494, Lng: -72.2998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Indiana 39.6256 -85.3025 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Indiana 39.8306 -87.2502 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Indiana 39.8306 -87.2502 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Indiana 39.8306 -87.2502 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgewater, South Dakota 43.5502 -97.4984 matched with DB +City: Bridgewater, state: Massachusetts, Lat: 41.9728, Lng: -70.9749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgewater, South Dakota 43.5502 -97.4984 matched with DB +City: Bridgewater, state: New Jersey, Lat: 40.5934, Lng: -74.6076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Ohio 41.0927 -84.3747 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, Arkansas 33.7756 -92.4889 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Illinois 39.8842 -91.1084 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Illinois 39.8842 -91.1084 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Oregon 45.2123 -122.9772 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, Arkansas 36.2498 -93.2160 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, Arkansas 36.2498 -93.2160 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver City, Iowa 41.1116 -95.6381 matched with DB +City: Silver City, state: New Mexico, Lat: 32.7783, Lng: -108.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Iowa 42.3980 -91.1207 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Iowa 42.3980 -91.1207 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little River, Kansas 38.3983 -98.0149 matched with DB +City: Little River, state: South Carolina, Lat: 33.8786, Lng: -78.6393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fargo, Oklahoma 36.3743 -99.6221 matched with DB +City: Fargo, state: North Dakota, Lat: 46.8651, Lng: -96.8292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobart, New York 42.3715 -74.6691 matched with DB +City: Hobart, state: Indiana, Lat: 41.514, Lng: -87.2729, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hobart, New York 42.3715 -74.6691 matched with DB +City: Hobart, state: Wisconsin, Lat: 44.4967, Lng: -88.1602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartford, Ohio 40.2395 -82.6884 matched with DB +City: Hartford, state: Wisconsin, Lat: 43.3223, Lng: -88.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Ohio 40.2395 -82.6884 matched with DB +City: Hartford, state: Connecticut, Lat: 41.7661, Lng: -72.6834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hartford, Ohio 40.2395 -82.6884 matched with DB +City: Hartford, state: Vermont, Lat: 43.6644, Lng: -72.3865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bangor, California 39.3761 -121.4117 matched with DB +City: Bangor, state: Maine, Lat: 44.8323, Lng: -68.7906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malone, Texas 31.9171 -96.8948 matched with DB +City: Malone, state: New York, Lat: 44.7956, Lng: -74.2859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Missouri 36.8172 -94.0866 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phillipsburg, Ohio 39.9040 -84.4008 matched with DB +City: Phillipsburg, state: New Jersey, Lat: 40.6894, Lng: -75.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Illinois 38.3778 -89.7966 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Illinois 38.3778 -89.7966 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Illinois 38.3778 -89.7966 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Georgia 32.5595 -83.1535 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Illinois 39.8499 -89.4091 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Illinois 39.8499 -89.4091 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Michigan 42.1001 -84.5542 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Michigan 42.1001 -84.5542 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Michigan 42.1001 -84.5542 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Michigan 42.1001 -84.5542 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Michigan 42.1001 -84.5542 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Michigan 42.1001 -84.5542 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewing, Illinois 38.0889 -88.8528 matched with DB +City: Ewing, state: New Jersey, Lat: 40.265, Lng: -74.8006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Idaho 42.6053 -114.2090 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farragut, Iowa 40.7201 -95.4808 matched with DB +City: Farragut, state: Tennessee, Lat: 35.8731, Lng: -84.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Allen, Alabama 33.8922 -87.7329 matched with DB +City: Glen Allen, state: Virginia, Lat: 37.666, Lng: -77.4838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Colorado 39.2860 -106.0672 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Defiance, Pennsylvania 40.1599 -78.2319 matched with DB +City: Defiance, state: Ohio, Lat: 41.2813, Lng: -84.3657, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abbeville, Mississippi 34.5034 -89.5025 matched with DB +City: Abbeville, state: Louisiana, Lat: 29.9751, Lng: -92.1265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Depew, Oklahoma 35.7969 -96.5302 matched with DB +City: Depew, state: New York, Lat: 42.9118, Lng: -78.7043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Island, Texas 29.5189 -96.5702 matched with DB +City: Rock Island, state: Illinois, Lat: 41.4699, Lng: -90.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Arkansas 36.3774 -92.2155 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Arkansas 36.3774 -92.2155 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Arkansas 36.3774 -92.2155 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Arkansas 36.3774 -92.2155 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malden, Illinois 41.4249 -89.3698 matched with DB +City: Malden, state: Massachusetts, Lat: 42.4305, Lng: -71.0576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, California 37.8189 -118.4845 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Oklahoma 36.3075 -97.5865 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Oklahoma 36.3075 -97.5865 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Oklahoma 36.3075 -97.5865 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Oklahoma 36.3075 -97.5865 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Oklahoma 36.3075 -97.5865 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, Pennsylvania 40.2255 -78.3660 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Pennsylvania 40.2255 -78.3660 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Pennsylvania 40.2255 -78.3660 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Pennsylvania 40.2255 -78.3660 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanford, Indiana 39.0898 -86.6667 matched with DB +City: Stanford, state: California, Lat: 37.4252, Lng: -122.1674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden, Missouri 36.5266 -93.6637 matched with DB +City: Golden, state: Colorado, Lat: 39.7406, Lng: -105.2118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Indiana 39.8569 -86.9833 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Indiana 39.8569 -86.9833 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, Louisiana 30.6823 -90.6545 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Massena, Iowa 41.2506 -94.7698 matched with DB +City: Massena, state: New York, Lat: 44.9609, Lng: -74.8339, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McLean, New York 42.5517 -76.2942 matched with DB +City: McLean, state: Virginia, Lat: 38.9436, Lng: -77.1943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vandalia, Michigan 41.9189 -85.9143 matched with DB +City: Vandalia, state: Ohio, Lat: 39.8791, Lng: -84.193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Delaware 39.4565 -75.6605 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Kentucky 38.2522 -85.6109 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Kentucky 38.2522 -85.6109 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Missouri 39.4735 -92.2117 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Missouri 39.4735 -92.2117 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Missouri 39.4735 -92.2117 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Missouri 39.4735 -92.2117 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Missouri 39.4735 -92.2117 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tupelo, Oklahoma 34.6027 -96.4208 matched with DB +City: Tupelo, state: Mississippi, Lat: 34.2692, Lng: -88.7318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, Ohio 41.0887 -84.4200 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Michigan 44.1916 -83.9323 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chicopee, Kansas 37.3835 -94.7444 matched with DB +City: Chicopee, state: Massachusetts, Lat: 42.1764, Lng: -72.5719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kendall, Wisconsin 43.7926 -90.3677 matched with DB +City: Kendall, state: Florida, Lat: 25.6697, Lng: -80.3556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Washington 46.5391 -117.0861 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New River, Virginia 37.1408 -80.5930 matched with DB +City: New River, state: Arizona, Lat: 33.8835, Lng: -112.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolivar, Pennsylvania 40.3952 -79.1521 matched with DB +City: Bolivar, state: Missouri, Lat: 37.6059, Lng: -93.4175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartland, Minnesota 43.8042 -93.4843 matched with DB +City: Hartland, state: Wisconsin, Lat: 43.1029, Lng: -88.3396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, South Dakota 43.8949 -103.4268 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, New York 42.3415 -75.1659 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Kansas 39.3226 -95.2688 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kansas 39.3226 -95.2688 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kansas 39.3226 -95.2688 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kansas 39.3226 -95.2688 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Kansas 39.3226 -95.2688 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewing, Nebraska 42.2594 -98.3438 matched with DB +City: Ewing, state: New Jersey, Lat: 40.265, Lng: -74.8006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopkins, Missouri 40.5511 -94.8169 matched with DB +City: Hopkins, state: Minnesota, Lat: 44.9259, Lng: -93.4056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, New Hampshire 43.4912 -71.0231 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, New Hampshire 43.4912 -71.0231 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, New Hampshire 43.4912 -71.0231 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, Nebraska 42.6524 -96.8740 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, Nebraska 42.6524 -96.8740 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Union, South Carolina 34.5536 -83.0509 matched with DB +City: South Union, state: Pennsylvania, Lat: 39.8705, Lng: -79.7222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Iowa 40.8279 -91.2622 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Virginia 38.3794 -78.2586 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Virginia 38.3794 -78.2586 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Virginia 38.3794 -78.2586 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Virginia 38.3794 -78.2586 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Virginia 38.3794 -78.2586 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Pennsylvania 40.5727 -78.0506 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Ohio 39.6519 -82.6608 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Mississippi 34.0576 -89.9132 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Mississippi 34.0576 -89.9132 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Mississippi 34.0576 -89.9132 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wharton, Ohio 40.8613 -83.4648 matched with DB +City: Wharton, state: Texas, Lat: 29.3177, Lng: -96.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Potsdam, Ohio 39.9637 -84.4148 matched with DB +City: Potsdam, state: New York, Lat: 44.6774, Lng: -75.0396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainfield, Iowa 42.8447 -92.5359 matched with DB +City: Plainfield, state: New Jersey, Lat: 40.6154, Lng: -74.4157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Iowa 42.8447 -92.5359 matched with DB +City: Plainfield, state: Indiana, Lat: 39.6954, Lng: -86.3716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Iowa 42.8447 -92.5359 matched with DB +City: Plainfield, state: Illinois, Lat: 41.6207, Lng: -88.2253, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shrewsbury, West Virginia 38.2079 -81.4671 matched with DB +City: Shrewsbury, state: Massachusetts, Lat: 42.2842, Lng: -71.7154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Tennessee 36.0046 -85.9779 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Tennessee 36.0046 -85.9779 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Illinois 40.6485 -90.1841 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Pennsylvania 40.0764 -75.6855 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntley, Montana 45.8995 -108.3054 matched with DB +City: Huntley, state: Illinois, Lat: 42.1599, Lng: -88.433, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgefield, Illinois 42.2707 -88.3620 matched with DB +City: Ridgefield, state: New Jersey, Lat: 40.8313, Lng: -74.0147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ridgefield, Illinois 42.2707 -88.3620 matched with DB +City: Ridgefield, state: Washington, Lat: 45.8114, Lng: -122.7051, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dallas, Wisconsin 45.2591 -91.8142 matched with DB +City: Dallas, state: Pennsylvania, Lat: 41.3608, Lng: -75.9656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Wisconsin 45.2591 -91.8142 matched with DB +City: Dallas, state: Georgia, Lat: 33.9152, Lng: -84.8416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Wisconsin 45.2591 -91.8142 matched with DB +City: Dallas, state: Oregon, Lat: 44.9221, Lng: -123.313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, Wisconsin 45.2591 -91.8142 matched with DB +City: Dallas, state: Texas, Lat: 32.7935, Lng: -96.7667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norman, Arkansas 34.4584 -93.6791 matched with DB +City: Norman, state: Oklahoma, Lat: 35.2335, Lng: -97.3471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellflower, Illinois 40.3404 -88.5258 matched with DB +City: Bellflower, state: California, Lat: 33.888, Lng: -118.1271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Kansas 39.5710 -95.3037 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kansas 39.5710 -95.3037 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kansas 39.5710 -95.3037 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kansas 39.5710 -95.3037 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kansas 39.5710 -95.3037 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Kansas 39.5710 -95.3037 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avondale, Colorado 38.2351 -104.3482 matched with DB +City: Avondale, state: Arizona, Lat: 33.3873, Lng: -112.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Mississippi 34.1749 -89.4519 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Mississippi 34.1749 -89.4519 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Mississippi 34.1749 -89.4519 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Endicott, Washington 46.9282 -117.6867 matched with DB +City: Endicott, state: New York, Lat: 42.098, Lng: -76.0639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, California 36.1431 -119.1355 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, California 36.1431 -119.1355 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Ohio 39.9437 -82.2516 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Ohio 39.9437 -82.2516 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Ohio 39.9437 -82.2516 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Michigan 46.4436 -87.5817 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Michigan 46.4436 -87.5817 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlottesville, Indiana 39.7903 -85.6128 matched with DB +City: Charlottesville, state: Virginia, Lat: 38.0375, Lng: -78.4855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Nebraska 41.2224 -98.2599 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Nebraska 41.2224 -98.2599 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomaston, Alabama 32.2683 -87.6237 matched with DB +City: Thomaston, state: Georgia, Lat: 32.8907, Lng: -84.3272, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Minnesota 43.9431 -92.3531 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Minnesota 43.9431 -92.3531 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Minnesota 43.9431 -92.3531 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Minnesota 43.9431 -92.3531 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Minnesota 43.9431 -92.3531 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsville, Missouri 38.7438 -94.0699 matched with DB +City: Kingsville, state: Texas, Lat: 27.5094, Lng: -97.861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whittier, Alaska 60.7852 -148.6455 matched with DB +City: Whittier, state: California, Lat: 33.9678, Lng: -118.0188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, Indiana 39.4154 -87.0752 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Missouri 39.1397 -92.4579 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Missouri 39.1397 -92.4579 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Georgia 32.7588 -84.1933 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Georgia 32.7588 -84.1933 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Georgia 32.7588 -84.1933 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Georgia 32.7588 -84.1933 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Georgia 32.7588 -84.1933 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Georgia 32.7588 -84.1933 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Pennsylvania 40.6868 -77.1140 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Pennsylvania 40.6868 -77.1140 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Delaware 38.5711 -75.6195 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Washington 48.5283 -121.9839 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Washington 48.5283 -121.9839 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Washington 48.5283 -121.9839 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Washington 48.5283 -121.9839 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tucker, Mississippi 32.7080 -89.0498 matched with DB +City: Tucker, state: Georgia, Lat: 33.8436, Lng: -84.2024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollister, Idaho 42.3529 -114.5839 matched with DB +City: Hollister, state: California, Lat: 36.8555, Lng: -121.3986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, California 39.1405 -121.9078 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, California 39.1405 -121.9078 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Nebraska 40.4323 -98.1033 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Nebraska 40.4323 -98.1033 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Nebraska 40.4323 -98.1033 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Nebraska 40.4323 -98.1033 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, Utah 37.3342 -112.6035 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Utah 37.3342 -112.6035 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, Utah 37.3342 -112.6035 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central, Arizona 32.8692 -109.7908 matched with DB +City: Central, state: Louisiana, Lat: 30.5593, Lng: -91.0369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mesa, California 37.4190 -118.5424 matched with DB +City: Mesa, state: Arizona, Lat: 33.4015, Lng: -111.7178, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Artesia, Mississippi 33.4164 -88.6424 matched with DB +City: Artesia, state: California, Lat: 33.8676, Lng: -118.0805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Artesia, Mississippi 33.4164 -88.6424 matched with DB +City: Artesia, state: New Mexico, Lat: 32.8497, Lng: -104.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Iowa 43.2464 -93.1233 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Iowa 43.2464 -93.1233 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Iowa 43.2464 -93.1233 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Iowa 43.2464 -93.1233 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Iowa 43.2464 -93.1233 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Iowa 43.2464 -93.1233 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Ohio 40.4630 -82.8283 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Ohio 40.4630 -82.8283 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterford, Ohio 39.5407 -81.6424 matched with DB +City: Waterford, state: California, Lat: 37.6429, Lng: -120.7553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterford, Ohio 39.5407 -81.6424 matched with DB +City: Waterford, state: New Jersey, Lat: 39.7415, Lng: -74.8207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garner, Texas 32.8270 -97.9847 matched with DB +City: Garner, state: North Carolina, Lat: 35.6936, Lng: -78.6181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochelle, Texas 31.2232 -99.2066 matched with DB +City: Rochelle, state: Illinois, Lat: 41.9197, Lng: -89.0629, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrodsburg, Indiana 39.0180 -86.5532 matched with DB +City: Harrodsburg, state: Kentucky, Lat: 37.7654, Lng: -84.8474, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, Texas 32.4613 -96.3965 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Nebraska 40.3024 -96.9886 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Nebraska 40.3024 -96.9886 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Nebraska 40.3024 -96.9886 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Nebraska 40.3024 -96.9886 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Nebraska 40.3024 -96.9886 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Nebraska 40.3024 -96.9886 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grantsville, West Virginia 38.9204 -81.0933 matched with DB +City: Grantsville, state: Utah, Lat: 40.6148, Lng: -112.4777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, Illinois 38.9537 -88.6257 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morton, Minnesota 44.5534 -94.9850 matched with DB +City: Morton, state: Illinois, Lat: 40.6135, Lng: -89.4669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Lake, Florida 28.4952 -82.3017 matched with DB +City: Spring Lake, state: North Carolina, Lat: 35.1843, Lng: -78.9962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, North Carolina 35.3465 -75.5069 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, North Carolina 35.3465 -75.5069 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, North Carolina 34.7396 -78.7186 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, North Carolina 34.7396 -78.7186 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scranton, North Dakota 46.1498 -103.1429 matched with DB +City: Scranton, state: Pennsylvania, Lat: 41.4044, Lng: -75.6649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Pennsylvania 40.5583 -78.0997 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Pennsylvania 40.5583 -78.0997 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Pennsylvania 40.5583 -78.0997 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Pennsylvania 40.5583 -78.0997 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Illinois 38.1838 -89.8451 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Illinois 38.1838 -89.8451 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Versailles, Illinois 39.8842 -90.6587 matched with DB +City: Versailles, state: Kentucky, Lat: 38.0486, Lng: -84.7258, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Wyoming 42.7969 -111.0216 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mission, Wisconsin 44.3454 -90.7631 matched with DB +City: Mission, state: Kansas, Lat: 39.027, Lng: -94.6568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mission, Wisconsin 44.3454 -90.7631 matched with DB +City: Mission, state: Texas, Lat: 26.2039, Lng: -98.3256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Pennsylvania 41.3219 -80.2581 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Kansas 37.5249 -95.6615 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Kansas 37.5249 -95.6615 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Kansas 37.5249 -95.6615 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, Oklahoma 36.1942 -96.3362 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crawfordsville, Iowa 41.2139 -91.5366 matched with DB +City: Crawfordsville, state: Indiana, Lat: 40.0428, Lng: -86.8976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, Oregon 46.1303 -123.3715 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Indiana 39.8068 -85.3529 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Indiana 39.8068 -85.3529 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Mississippi 33.9693 -90.3693 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex, Missouri 36.8119 -89.8627 matched with DB +City: Essex, state: Maryland, Lat: 39.3021, Lng: -76.4449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Essex, Missouri 36.8119 -89.8627 matched with DB +City: Essex, state: Vermont, Lat: 44.5196, Lng: -73.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, New York 42.8241 -78.0842 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, New York 42.8241 -78.0842 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adelphi, Ohio 39.4647 -82.7456 matched with DB +City: Adelphi, state: Maryland, Lat: 39.0017, Lng: -76.9649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Arkansas 36.4642 -93.4302 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Arkansas 36.4642 -93.4302 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Arkansas 36.4642 -93.4302 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandusky, Iowa 40.4579 -91.3868 matched with DB +City: Sandusky, state: Ohio, Lat: 41.4468, Lng: -82.7024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Ulm, Texas 29.8874 -96.4913 matched with DB +City: New Ulm, state: Minnesota, Lat: 44.312, Lng: -94.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain Park, Oklahoma 34.6988 -98.9524 matched with DB +City: Mountain Park, state: Georgia, Lat: 33.8458, Lng: -84.1314, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Wisconsin 44.3217 -91.1204 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Wisconsin 44.3217 -91.1204 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Pennsylvania 40.2455 -79.6748 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Pennsylvania 40.2455 -79.6748 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Pennsylvania 40.2455 -79.6748 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Pennsylvania 40.2455 -79.6748 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Pennsylvania 40.2455 -79.6748 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jerome, Arizona 34.7471 -112.1076 matched with DB +City: Jerome, state: Idaho, Lat: 42.7179, Lng: -114.5159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McFarland, Kansas 39.0545 -96.2381 matched with DB +City: McFarland, state: Wisconsin, Lat: 43.0203, Lng: -89.2828, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: McFarland, Kansas 39.0545 -96.2381 matched with DB +City: McFarland, state: California, Lat: 35.6781, Lng: -119.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Kansas 38.3285 -94.9899 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Kansas 38.3285 -94.9899 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bay City, Wisconsin 44.5873 -92.4573 matched with DB +City: Bay City, state: Michigan, Lat: 43.5902, Lng: -83.8887, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bay City, Wisconsin 44.5873 -92.4573 matched with DB +City: Bay City, state: Texas, Lat: 28.9838, Lng: -95.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butte, Nebraska 42.9125 -98.8479 matched with DB +City: Butte, state: Montana, Lat: 45.902, Lng: -112.6571, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Utah 38.2067 -112.1793 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Utah 38.2067 -112.1793 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Utah 38.2067 -112.1793 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Michigan 42.8421 -85.2425 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Michigan 42.8421 -85.2425 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Michigan 42.8421 -85.2425 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Pennsylvania 40.3929 -77.9412 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Damascus, Arkansas 35.3671 -92.4108 matched with DB +City: Damascus, state: Maryland, Lat: 39.2701, Lng: -77.1957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Damascus, Arkansas 35.3671 -92.4108 matched with DB +City: Damascus, state: Oregon, Lat: 45.4233, Lng: -122.4436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, Pennsylvania 39.7921 -79.9126 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillcrest Heights, Florida 27.8083 -81.5695 matched with DB +City: Hillcrest Heights, state: Maryland, Lat: 38.8373, Lng: -76.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Lake, Oklahoma 35.4276 -98.1930 matched with DB +City: Cedar Lake, state: Indiana, Lat: 41.3696, Lng: -87.4389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plum, Texas 29.9324 -96.9812 matched with DB +City: Plum, state: Pennsylvania, Lat: 40.5024, Lng: -79.7495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pine Hill, New York 42.1308 -74.4666 matched with DB +City: Pine Hill, state: New Jersey, Lat: 39.7879, Lng: -74.9857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallon, Montana 46.8373 -105.1270 matched with DB +City: Fallon, state: Nevada, Lat: 39.4737, Lng: -118.7779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, Georgia 34.4856 -83.1985 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chandler, Minnesota 43.9306 -95.9512 matched with DB +City: Chandler, state: Arizona, Lat: 33.2825, Lng: -111.8514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gadsden, Tennessee 35.7768 -88.9861 matched with DB +City: Gadsden, state: Alabama, Lat: 34.0086, Lng: -86.0157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lafayette, Ohio 40.7589 -83.9499 matched with DB +City: Lafayette, state: Indiana, Lat: 40.3991, Lng: -86.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Ohio 40.7589 -83.9499 matched with DB +City: Lafayette, state: Louisiana, Lat: 30.2082, Lng: -92.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Ohio 40.7589 -83.9499 matched with DB +City: Lafayette, state: Colorado, Lat: 39.9946, Lng: -105.0998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lafayette, Ohio 40.7589 -83.9499 matched with DB +City: Lafayette, state: California, Lat: 37.8919, Lng: -122.1189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Herndon, Pennsylvania 40.7104 -76.8519 matched with DB +City: Herndon, state: Virginia, Lat: 38.9699, Lng: -77.3867, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gallatin, Texas 31.8969 -95.1520 matched with DB +City: Gallatin, state: Tennessee, Lat: 36.3782, Lng: -86.4698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Michael, Pennsylvania 40.3290 -78.7717 matched with DB +City: St. Michael, state: Minnesota, Lat: 45.2014, Lng: -93.692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wadsworth, Texas 28.8224 -95.9276 matched with DB +City: Wadsworth, state: Ohio, Lat: 41.0279, Lng: -81.7323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Virginia 38.7802 -77.3866 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Virginia 38.7802 -77.3866 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calhoun, Missouri 38.4683 -93.6251 matched with DB +City: Calhoun, state: Georgia, Lat: 34.491, Lng: -84.9386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marquette, Wisconsin 43.7464 -89.1384 matched with DB +City: Marquette, state: Michigan, Lat: 46.544, Lng: -87.4082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gorham, Kansas 38.8806 -99.0237 matched with DB +City: Gorham, state: Maine, Lat: 43.7034, Lng: -70.4581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, California 39.4016 -122.0194 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, California 39.4016 -122.0194 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, California 39.4016 -122.0194 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Hill, Tennessee 36.5512 -87.0010 matched with DB +City: Cedar Hill, state: Texas, Lat: 32.581, Lng: -96.9591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plymouth, Utah 41.8734 -112.1454 matched with DB +City: Plymouth, state: Wisconsin, Lat: 43.7447, Lng: -87.966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Utah 41.8734 -112.1454 matched with DB +City: Plymouth, state: Michigan, Lat: 42.3718, Lng: -83.468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Utah 41.8734 -112.1454 matched with DB +City: Plymouth, state: Minnesota, Lat: 45.0225, Lng: -93.4617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Utah 41.8734 -112.1454 matched with DB +City: Plymouth, state: Indiana, Lat: 41.3483, Lng: -86.3187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Utah 41.8734 -112.1454 matched with DB +City: Plymouth, state: Massachusetts, Lat: 41.8783, Lng: -70.6309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plymouth, Utah 41.8734 -112.1454 matched with DB +City: Plymouth, state: Pennsylvania, Lat: 40.1115, Lng: -75.2976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bowling Green, Indiana 39.3831 -87.0117 matched with DB +City: Bowling Green, state: Ohio, Lat: 41.3776, Lng: -83.6495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bowling Green, Indiana 39.3831 -87.0117 matched with DB +City: Bowling Green, state: Kentucky, Lat: 36.9716, Lng: -86.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williston, Ohio 41.6026 -83.3419 matched with DB +City: Williston, state: North Dakota, Lat: 48.1814, Lng: -103.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Williston, Ohio 41.6026 -83.3419 matched with DB +City: Williston, state: Vermont, Lat: 44.4345, Lng: -73.0888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Kansas 37.8471 -94.9755 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, Wyoming 41.6387 -104.1629 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Wyoming 41.6387 -104.1629 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Wyoming 41.6387 -104.1629 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Ohio 39.3069 -83.9108 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Ohio 39.3069 -83.9108 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Ohio 39.3069 -83.9108 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, Georgia 34.0860 -84.9875 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Utah 39.1934 -111.6904 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Utah 39.1934 -111.6904 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Utah 39.1934 -111.6904 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Manchester, Ohio 39.9034 -84.6263 matched with DB +City: West Manchester, state: Pennsylvania, Lat: 39.9456, Lng: -76.7952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grimes, California 39.0741 -121.8988 matched with DB +City: Grimes, state: Iowa, Lat: 41.6779, Lng: -93.7947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sugar Grove, Ohio 39.6279 -82.5456 matched with DB +City: Sugar Grove, state: Illinois, Lat: 41.7759, Lng: -88.4481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Illinois 41.4120 -90.5742 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Illinois 41.4120 -90.5742 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Illinois 41.4120 -90.5742 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Nebraska 41.4083 -102.9708 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Kentucky 37.7092 -87.8146 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Kentucky 37.7092 -87.8146 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Iowa 40.6942 -92.2739 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Minnesota 48.8577 -96.8019 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Minnesota 48.8577 -96.8019 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Minnesota 48.8577 -96.8019 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Minnesota 48.8577 -96.8019 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Minnesota 48.8577 -96.8019 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Minnesota 48.8577 -96.8019 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oswego, South Carolina 34.0056 -80.2862 matched with DB +City: Oswego, state: New York, Lat: 43.4516, Lng: -76.5005, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oswego, South Carolina 34.0056 -80.2862 matched with DB +City: Oswego, state: Illinois, Lat: 41.6834, Lng: -88.3372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Michigan 43.4128 -83.1863 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Michigan 43.4128 -83.1863 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Michigan 43.4128 -83.1863 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boulder, Utah 37.9228 -111.4319 matched with DB +City: Boulder, state: Colorado, Lat: 40.0248, Lng: -105.2524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Oregon 45.6768 -118.7368 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Oregon 45.6768 -118.7368 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Oregon 45.6768 -118.7368 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Oregon 45.6768 -118.7368 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leland, Michigan 45.0214 -85.7575 matched with DB +City: Leland, state: North Carolina, Lat: 34.2042, Lng: -78.0279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pekin, Ohio 40.7207 -81.1247 matched with DB +City: Pekin, state: Illinois, Lat: 40.5678, Lng: -89.6251, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Virginia 36.9434 -82.1527 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Virginia 36.9434 -82.1527 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Virginia 36.9434 -82.1527 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, Mississippi 34.0418 -90.7459 matched with DB +City: Duncan, state: Oklahoma, Lat: 34.5408, Lng: -97.9215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Valley, Texas 33.9375 -98.5981 matched with DB +City: Pleasant Valley, state: New York, Lat: 41.7697, Lng: -73.8049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nanticoke, Maryland 38.2676 -75.8939 matched with DB +City: Nanticoke, state: Pennsylvania, Lat: 41.2005, Lng: -76.0003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Minnesota 43.8228 -93.2683 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Minnesota 43.8228 -93.2683 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory Hills, Pennsylvania 41.0347 -75.8221 matched with DB +City: Hickory Hills, state: Illinois, Lat: 41.7248, Lng: -87.828, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield, Virginia 38.1954 -79.4105 matched with DB +City: Deerfield, state: Illinois, Lat: 42.1654, Lng: -87.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Illinois 39.1975 -89.5322 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Illinois 39.1975 -89.5322 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, Ohio 40.0280 -81.0409 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Ohio 40.0280 -81.0409 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Ohio 40.0280 -81.0409 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Ohio 40.0280 -81.0409 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cecil, Georgia 31.0466 -83.3906 matched with DB +City: Cecil, state: Pennsylvania, Lat: 40.3147, Lng: -80.1942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Alaska 57.1815 -170.2743 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Arkansas 35.2729 -92.5549 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holt, Missouri 39.4552 -94.3371 matched with DB +City: Holt, state: Michigan, Lat: 42.6416, Lng: -84.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Iowa 42.3151 -92.0034 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Iowa 42.3151 -92.0034 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Iowa 42.3151 -92.0034 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Placerville, Colorado 38.0054 -108.0400 matched with DB +City: Placerville, state: California, Lat: 38.7308, Lng: -120.7979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, New York 42.5422 -77.9519 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delaware, Indiana 39.1478 -85.2072 matched with DB +City: Delaware, state: Ohio, Lat: 40.2851, Lng: -83.0741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Ohio 39.4761 -82.0796 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Ohio 39.4761 -82.0796 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Ohio 39.4761 -82.0796 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Ohio 39.4761 -82.0796 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Ohio 39.4761 -82.0796 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Ohio 39.4761 -82.0796 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Georgia 32.8263 -82.7258 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Georgia 32.8263 -82.7258 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Georgia 32.8263 -82.7258 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Georgia 32.8263 -82.7258 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Georgia 32.8263 -82.7258 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Georgia 32.8263 -82.7258 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centennial, Wyoming 41.3005 -106.1355 matched with DB +City: Centennial, state: Colorado, Lat: 39.5926, Lng: -104.8673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haysville, Indiana 38.4856 -86.9150 matched with DB +City: Haysville, state: Kansas, Lat: 37.5648, Lng: -97.3527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga, North Carolina 35.6537 -77.7756 matched with DB +City: Saratoga, state: California, Lat: 37.2684, Lng: -122.0263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest Hills, North Carolina 35.2958 -83.1955 matched with DB +City: Forest Hills, state: Michigan, Lat: 42.9577, Lng: -85.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, Nebraska 40.3123 -97.8115 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, Nebraska 40.3123 -97.8115 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jasper, Michigan 41.7859 -84.0403 matched with DB +City: Jasper, state: Alabama, Lat: 33.8508, Lng: -87.271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jasper, Michigan 41.7859 -84.0403 matched with DB +City: Jasper, state: Indiana, Lat: 38.3933, Lng: -86.9402, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winslow, Arkansas 35.8008 -94.1304 matched with DB +City: Winslow, state: Arizona, Lat: 35.0243, Lng: -110.7095, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winslow, Arkansas 35.8008 -94.1304 matched with DB +City: Winslow, state: New Jersey, Lat: 39.7027, Lng: -74.9029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walker, Missouri 37.8989 -94.2307 matched with DB +City: Walker, state: Michigan, Lat: 42.9853, Lng: -85.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avondale, Missouri 39.1545 -94.5452 matched with DB +City: Avondale, state: Arizona, Lat: 33.3873, Lng: -112.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dyer, Nevada 37.6469 -118.0345 matched with DB +City: Dyer, state: Indiana, Lat: 41.4977, Lng: -87.509, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bell, Oklahoma 35.7366 -94.5677 matched with DB +City: Bell, state: California, Lat: 33.9801, Lng: -118.1798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentone, Alabama 34.5655 -85.5846 matched with DB +City: Mentone, state: California, Lat: 34.0609, Lng: -117.1108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, West Virginia 38.6452 -79.3332 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lunenburg, Vermont 44.4570 -71.6803 matched with DB +City: Lunenburg, state: Massachusetts, Lat: 42.5897, Lng: -71.7199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, South Dakota 45.3056 -97.0391 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, South Dakota 45.3056 -97.0391 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, South Dakota 45.3056 -97.0391 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Wisconsin 45.3260 -92.1710 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Wisconsin 45.3260 -92.1710 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Wisconsin 45.3260 -92.1710 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Wisconsin 45.3260 -92.1710 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Wisconsin 45.3260 -92.1710 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairhaven, California 40.7884 -124.2014 matched with DB +City: Fairhaven, state: Massachusetts, Lat: 41.6394, Lng: -70.8732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malone, Washington 46.9779 -123.3035 matched with DB +City: Malone, state: New York, Lat: 44.7956, Lng: -74.2859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Louisiana 32.1026 -92.0770 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Louisiana 32.1026 -92.0770 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Louisiana 32.1026 -92.0770 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Louisiana 32.1026 -92.0770 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Louisiana 32.1026 -92.0770 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Louisiana 32.1026 -92.0770 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Timberlake, New Mexico 35.2012 -108.4843 matched with DB +City: Timberlake, state: Virginia, Lat: 37.3167, Lng: -79.2481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henrietta, North Carolina 35.2569 -81.8012 matched with DB +City: Henrietta, state: New York, Lat: 43.0555, Lng: -77.6413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kokomo, Mississippi 31.1991 -90.0008 matched with DB +City: Kokomo, state: Indiana, Lat: 40.464, Lng: -86.1277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Thomas, Arizona 33.0222 -109.9665 matched with DB +City: Fort Thomas, state: Kentucky, Lat: 39.0801, Lng: -84.4518, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Colton, Washington 46.5675 -117.1284 matched with DB +City: Colton, state: California, Lat: 34.0538, Lng: -117.3255, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Kentucky 38.7253 -84.8238 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, Ohio 40.9094 -80.5335 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: East Point, Alabama 34.1857 -86.7928 matched with DB +City: East Point, state: Georgia, Lat: 33.6696, Lng: -84.4701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, North Carolina 35.5471 -76.2261 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, North Carolina 35.5471 -76.2261 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, North Carolina 35.5471 -76.2261 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, North Carolina 35.5471 -76.2261 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Georgia 33.5180 -83.7348 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Georgia 33.5180 -83.7348 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Georgia 33.5180 -83.7348 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Georgia 33.5180 -83.7348 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Iowa 40.8520 -91.6206 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Iowa 40.8520 -91.6206 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Iowa 40.8520 -91.6206 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Iowa 40.8520 -91.6206 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Iowa 40.8520 -91.6206 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Iowa 40.8520 -91.6206 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wausau, Florida 30.6334 -85.5874 matched with DB +City: Wausau, state: Wisconsin, Lat: 44.962, Lng: -89.6459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ludlow, Illinois 40.3866 -88.1259 matched with DB +City: Ludlow, state: Massachusetts, Lat: 42.1921, Lng: -72.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, West Virginia 39.1219 -81.3910 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, West Virginia 39.1219 -81.3910 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, West Virginia 39.1219 -81.3910 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, West Virginia 39.1219 -81.3910 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, West Virginia 39.1219 -81.3910 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Maryland 39.4240 -79.3260 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Maryland 39.4240 -79.3260 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Virginia 37.8827 -79.2829 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Virginia 37.8827 -79.2829 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Virginia 37.8827 -79.2829 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Virginia 37.8827 -79.2829 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Albany, Pennsylvania 41.6003 -76.4445 matched with DB +City: New Albany, state: Indiana, Lat: 38.309, Lng: -85.8234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Albany, Pennsylvania 41.6003 -76.4445 matched with DB +City: New Albany, state: Ohio, Lat: 40.0809, Lng: -82.7848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmount, North Dakota 46.0547 -96.6029 matched with DB +City: Fairmount, state: New York, Lat: 43.0414, Lng: -76.2485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmount, North Dakota 46.0547 -96.6029 matched with DB +City: Fairmount, state: Colorado, Lat: 39.7931, Lng: -105.1711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amity, Indiana 39.4262 -86.0011 matched with DB +City: Amity, state: Pennsylvania, Lat: 40.2905, Lng: -75.7477, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McHenry, Kentucky 37.3795 -86.9226 matched with DB +City: McHenry, state: Illinois, Lat: 42.3387, Lng: -88.2932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newcastle, Utah 37.6628 -113.5644 matched with DB +City: Newcastle, state: Washington, Lat: 47.5304, Lng: -122.1633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newcastle, Utah 37.6628 -113.5644 matched with DB +City: Newcastle, state: Oklahoma, Lat: 35.2401, Lng: -97.5995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Oklahoma 36.1502 -97.6234 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Oklahoma 36.1502 -97.6234 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Oklahoma 36.1502 -97.6234 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Oklahoma 36.1502 -97.6234 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Templeton, Iowa 41.9180 -94.9413 matched with DB +City: Templeton, state: California, Lat: 35.556, Lng: -120.7181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kansas 39.8397 -95.7282 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey, Indiana 41.1560 -86.4821 matched with DB +City: Monterey, state: California, Lat: 36.5919, Lng: -121.8808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moline, Kansas 37.3637 -96.3025 matched with DB +City: Moline, state: Illinois, Lat: 41.4821, Lng: -90.492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Virginia 37.4914 -78.2577 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Virginia 37.4914 -78.2577 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, West Virginia 37.6142 -81.8689 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Nebraska 41.4249 -99.1261 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Nebraska 41.4249 -99.1261 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chili, Wisconsin 44.6296 -90.3583 matched with DB +City: Chili, state: New York, Lat: 43.0845, Lng: -77.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlantic Beach, South Carolina 33.8035 -78.7177 matched with DB +City: Atlantic Beach, state: Florida, Lat: 30.3375, Lng: -81.4127, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Connecticut 41.9631 -73.0166 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Connecticut 41.9631 -73.0166 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Indiana 39.8475 -87.1868 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Indiana 39.8475 -87.1868 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Indiana 39.8475 -87.1868 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Indiana 39.8475 -87.1868 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Arizona 34.2508 -109.6926 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Arizona 34.2508 -109.6926 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Missouri 38.7667 -92.4802 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Missouri 38.7667 -92.4802 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Utah 37.4303 -112.5061 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Utah 37.4303 -112.5061 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Illinois 40.8875 -90.5164 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Damascus, Georgia 31.2989 -84.7170 matched with DB +City: Damascus, state: Maryland, Lat: 39.2701, Lng: -77.1957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Damascus, Georgia 31.2989 -84.7170 matched with DB +City: Damascus, state: Oregon, Lat: 45.4233, Lng: -122.4436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, Illinois 38.7229 -88.9118 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Springs, Wisconsin 43.4790 -89.9177 matched with DB +City: Rock Springs, state: Wyoming, Lat: 41.5947, Lng: -109.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hull, Texas 30.1464 -94.6422 matched with DB +City: Hull, state: Massachusetts, Lat: 42.2861, Lng: -70.8835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Michigan 43.5667 -83.5143 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delaware, Oklahoma 36.7790 -95.6425 matched with DB +City: Delaware, state: Ohio, Lat: 40.2851, Lng: -83.0741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, South Dakota 45.4501 -99.3367 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wayland, Kentucky 37.4508 -82.7996 matched with DB +City: Wayland, state: Massachusetts, Lat: 42.3586, Lng: -71.3594, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairbanks, Indiana 39.2195 -87.5222 matched with DB +City: Fairbanks, state: Alaska, Lat: 64.8353, Lng: -147.6533, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, California 34.0019 -118.2105 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, California 34.0019 -118.2105 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, South Dakota 45.5863 -103.5434 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, South Dakota 45.5863 -103.5434 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Washington 47.2405 -121.1733 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Washington 47.2405 -121.1733 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Washington 47.2405 -121.1733 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, New Jersey 40.2465 -74.5814 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, New Jersey 40.2465 -74.5814 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, New Jersey 40.2465 -74.5814 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snyder, Nebraska 41.7045 -96.7869 matched with DB +City: Snyder, state: Texas, Lat: 32.7133, Lng: -100.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leavenworth, Indiana 38.1997 -86.3454 matched with DB +City: Leavenworth, state: Kansas, Lat: 39.3239, Lng: -94.924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bennington, Oklahoma 34.0038 -96.0376 matched with DB +City: Bennington, state: Vermont, Lat: 42.8854, Lng: -73.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Iowa 42.1452 -92.1441 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewistown, Maryland 39.5409 -77.4191 matched with DB +City: Lewistown, state: Pennsylvania, Lat: 40.5964, Lng: -77.573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montgomery, Michigan 41.7775 -84.8064 matched with DB +City: Montgomery, state: New York, Lat: 41.5399, Lng: -74.2073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Michigan 41.7775 -84.8064 matched with DB +City: Montgomery, state: Alabama, Lat: 32.3482, Lng: -86.2668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Michigan 41.7775 -84.8064 matched with DB +City: Montgomery, state: Ohio, Lat: 39.2496, Lng: -84.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Michigan 41.7775 -84.8064 matched with DB +City: Montgomery, state: Illinois, Lat: 41.7237, Lng: -88.3633, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Michigan 41.7775 -84.8064 matched with DB +City: Montgomery, state: New Jersey, Lat: 40.426, Lng: -74.6791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Montgomery, Michigan 41.7775 -84.8064 matched with DB +City: Montgomery, state: Pennsylvania, Lat: 40.2411, Lng: -75.2318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eau Claire, Pennsylvania 41.1368 -79.7986 matched with DB +City: Eau Claire, state: Wisconsin, Lat: 44.8197, Lng: -91.4948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkwood, Pennsylvania 39.8539 -76.0798 matched with DB +City: Kirkwood, state: Missouri, Lat: 38.5788, Lng: -90.4203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Idaho 44.5719 -116.6778 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Idaho 44.5719 -116.6778 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Idaho 44.5719 -116.6778 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Idaho 44.5719 -116.6778 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canby, California 41.4477 -120.8843 matched with DB +City: Canby, state: Oregon, Lat: 45.2652, Lng: -122.6867, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manalapan, Florida 26.5620 -80.0439 matched with DB +City: Manalapan, state: New Jersey, Lat: 40.28, Lng: -74.3436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Washington 48.1229 -123.0911 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Washington 48.1229 -123.0911 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Libertyville, Iowa 40.9582 -92.0496 matched with DB +City: Libertyville, state: Illinois, Lat: 42.287, Lng: -87.967, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oswego, Indiana 41.3203 -85.7872 matched with DB +City: Oswego, state: New York, Lat: 43.4516, Lng: -76.5005, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oswego, Indiana 41.3203 -85.7872 matched with DB +City: Oswego, state: Illinois, Lat: 41.6834, Lng: -88.3372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, Washington 47.8119 -119.6379 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Washington 47.8119 -119.6379 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Washington 47.8119 -119.6379 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, Washington 47.8119 -119.6379 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Indiana 39.7862 -85.1562 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Indiana 39.7862 -85.1562 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Indiana 39.7862 -85.1562 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Indiana 39.7862 -85.1562 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Indiana 39.7862 -85.1562 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Indiana 39.7862 -85.1562 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dumas, Mississippi 34.6381 -88.8431 matched with DB +City: Dumas, state: Texas, Lat: 35.8613, Lng: -101.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Ohio 39.8534 -81.6588 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Ohio 39.8534 -81.6588 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Xenia, Illinois 38.6373 -88.6375 matched with DB +City: Xenia, state: Ohio, Lat: 39.6829, Lng: -83.9413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Charlton, Maryland 39.6344 -77.8944 matched with DB +City: Charlton, state: Massachusetts, Lat: 42.1351, Lng: -71.968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winslow, Illinois 42.4929 -89.7948 matched with DB +City: Winslow, state: Arizona, Lat: 35.0243, Lng: -110.7095, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winslow, Illinois 42.4929 -89.7948 matched with DB +City: Winslow, state: New Jersey, Lat: 39.7027, Lng: -74.9029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tecumseh, Kansas 39.0419 -95.5807 matched with DB +City: Tecumseh, state: Michigan, Lat: 42.0066, Lng: -83.945, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Atkinson, Iowa 43.1443 -91.9346 matched with DB +City: Fort Atkinson, state: Wisconsin, Lat: 42.9253, Lng: -88.8442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Georgia 31.9011 -84.2552 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Georgia 31.9011 -84.2552 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leesburg, New Jersey 39.2593 -74.9849 matched with DB +City: Leesburg, state: Virginia, Lat: 39.1057, Lng: -77.5544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Leesburg, New Jersey 39.2593 -74.9849 matched with DB +City: Leesburg, state: Florida, Lat: 28.7672, Lng: -81.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grinnell, Kansas 39.1266 -100.6311 matched with DB +City: Grinnell, state: Iowa, Lat: 41.7359, Lng: -92.7244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Justice, West Virginia 37.5993 -81.8381 matched with DB +City: Justice, state: Illinois, Lat: 41.7495, Lng: -87.8345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Kansas 37.0509 -94.7032 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Kansas 37.0509 -94.7032 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Kansas 37.0509 -94.7032 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Nebraska 42.0701 -97.9671 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Nebraska 42.0701 -97.9671 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, Iowa 41.9204 -92.3945 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, Iowa 41.9204 -92.3945 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wyoming, Rhode Island 41.5143 -71.6903 matched with DB +City: Wyoming, state: Michigan, Lat: 42.8908, Lng: -85.7066, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wyoming, Rhode Island 41.5143 -71.6903 matched with DB +City: Wyoming, state: Ohio, Lat: 39.2297, Lng: -84.4816, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, Indiana 41.0750 -87.2575 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Indiana 41.0750 -87.2575 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Indiana 41.0750 -87.2575 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Louisiana 31.7226 -91.5373 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Louisiana 31.7226 -91.5373 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Louisiana 31.7226 -91.5373 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Louisiana 31.7226 -91.5373 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Louisiana 31.7226 -91.5373 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Egg Harbor, Wisconsin 45.0528 -87.2826 matched with DB +City: Egg Harbor, state: New Jersey, Lat: 39.3787, Lng: -74.6102, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Wisconsin 44.5930 -89.7679 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, Virginia 37.9901 -79.5067 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, Virginia 37.9901 -79.5067 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanton, Missouri 38.2702 -91.1059 matched with DB +City: Stanton, state: California, Lat: 33.8003, Lng: -117.9935, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Nebraska 42.8753 -98.7003 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Nebraska 42.8753 -98.7003 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Wisconsin 43.6935 -89.1304 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Wisconsin 43.6935 -89.1304 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Wisconsin 43.6935 -89.1304 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Ohio 40.5961 -82.1129 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, Nebraska 40.2963 -98.7316 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, North Dakota 47.3244 -97.7191 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Kansas 39.1729 -96.9105 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Kansas 39.1729 -96.9105 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Kansas 39.1729 -96.9105 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Kansas 39.1729 -96.9105 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howell, Utah 41.7733 -112.4450 matched with DB +City: Howell, state: Michigan, Lat: 42.6078, Lng: -83.9339, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Howell, Utah 41.7733 -112.4450 matched with DB +City: Howell, state: New Jersey, Lat: 40.1819, Lng: -74.1976, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merriam, Indiana 41.2873 -85.4344 matched with DB +City: Merriam, state: Kansas, Lat: 39.0186, Lng: -94.6933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Nevada 39.5112 -115.9658 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Nevada 39.5112 -115.9658 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami, Indiana 40.6142 -86.1064 matched with DB +City: Miami, state: Florida, Lat: 25.784, Lng: -80.2101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Miami, Indiana 40.6142 -86.1064 matched with DB +City: Miami, state: Oklahoma, Lat: 36.8878, Lng: -94.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Creek, Pennsylvania 40.4373 -77.9307 matched with DB +City: Mill Creek, state: Washington, Lat: 47.8631, Lng: -122.2037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saddlebrooke, Missouri 36.8260 -93.2018 matched with DB +City: Saddlebrooke, state: Arizona, Lat: 32.5576, Lng: -110.874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainville, Georgia 34.4053 -85.0312 matched with DB +City: Plainville, state: Massachusetts, Lat: 42.0141, Lng: -71.3364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashua, Montana 48.1336 -106.3571 matched with DB +City: Nashua, state: New Hampshire, Lat: 42.7491, Lng: -71.491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, Louisiana 32.0507 -91.6567 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, West Virginia 39.0673 -79.8143 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown, Illinois 37.4499 -88.3052 matched with DB +City: Elizabethtown, state: Pennsylvania, Lat: 40.1533, Lng: -76.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elizabethtown, Illinois 37.4499 -88.3052 matched with DB +City: Elizabethtown, state: Kentucky, Lat: 37.7031, Lng: -85.8773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Nebraska 41.4741 -97.5989 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millbrook, Illinois 41.6071 -88.5454 matched with DB +City: Millbrook, state: Alabama, Lat: 32.5027, Lng: -86.3737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Arkansas 35.0927 -94.3531 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Arkansas 35.0927 -94.3531 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Arkansas 35.0927 -94.3531 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisonville, New Jersey 39.6881 -75.2701 matched with DB +City: Harrisonville, state: Missouri, Lat: 38.653, Lng: -94.3467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barstow, Texas 31.4615 -103.3955 matched with DB +City: Barstow, state: California, Lat: 34.8661, Lng: -117.0471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lockhart, Alabama 31.0128 -86.3505 matched with DB +City: Lockhart, state: Florida, Lat: 28.627, Lng: -81.4354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lockhart, Alabama 31.0128 -86.3505 matched with DB +City: Lockhart, state: Texas, Lat: 29.8785, Lng: -97.6831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Nebraska 40.7839 -99.1604 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Nebraska 40.7839 -99.1604 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Nebraska 40.7839 -99.1604 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midlothian, Maryland 39.6319 -78.9515 matched with DB +City: Midlothian, state: Illinois, Lat: 41.6254, Lng: -87.7243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Maryland 39.6319 -78.9515 matched with DB +City: Midlothian, state: Texas, Lat: 32.4669, Lng: -96.989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midlothian, Maryland 39.6319 -78.9515 matched with DB +City: Midlothian, state: Virginia, Lat: 37.4856, Lng: -77.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga, Indiana 40.2368 -84.9159 matched with DB +City: Saratoga, state: California, Lat: 37.2684, Lng: -122.0263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burbank, Ohio 40.9862 -81.9949 matched with DB +City: Burbank, state: Illinois, Lat: 41.7444, Lng: -87.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burbank, Ohio 40.9862 -81.9949 matched with DB +City: Burbank, state: California, Lat: 34.1879, Lng: -118.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Iowa 41.3228 -92.3305 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Tennessee 35.4085 -85.9639 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkville, Tennessee 36.0976 -89.1183 matched with DB +City: Yorkville, state: Illinois, Lat: 41.6563, Lng: -88.4507, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roanoke, Louisiana 30.2356 -92.7481 matched with DB +City: Roanoke, state: Virginia, Lat: 37.2785, Lng: -79.9581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roanoke, Louisiana 30.2356 -92.7481 matched with DB +City: Roanoke, state: Texas, Lat: 33.0144, Lng: -97.2276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Mississippi 32.8230 -90.2634 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Illinois 40.7152 -87.7310 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Pennsylvania 40.3418 -78.8841 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown, Indiana 39.1351 -85.8125 matched with DB +City: Elizabethtown, state: Pennsylvania, Lat: 40.1533, Lng: -76.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elizabethtown, Indiana 39.1351 -85.8125 matched with DB +City: Elizabethtown, state: Kentucky, Lat: 37.7031, Lng: -85.8773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Wyoming 41.0345 -107.5356 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Wyoming 41.0345 -107.5356 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksdale, Missouri 39.8139 -94.5508 matched with DB +City: Clarksdale, state: Mississippi, Lat: 34.1933, Lng: -90.5693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Akron, Alabama 32.8785 -87.7429 matched with DB +City: Akron, state: Ohio, Lat: 41.0798, Lng: -81.5219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Texas 33.3142 -99.8565 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Texas 33.3142 -99.8565 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Texas 33.3142 -99.8565 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Texas 33.3142 -99.8565 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Capitola, Florida 30.4449 -84.0799 matched with DB +City: Capitola, state: California, Lat: 36.9773, Lng: -121.9537, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victor, Colorado 38.7088 -105.1419 matched with DB +City: Victor, state: New York, Lat: 42.9894, Lng: -77.4277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peters, California 37.9763 -121.0439 matched with DB +City: Peters, state: Pennsylvania, Lat: 40.2739, Lng: -80.0803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Missouri 38.6435 -90.4335 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Missouri 38.6435 -90.4335 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Missouri 38.6435 -90.4335 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savannah, Ohio 40.9666 -82.3661 matched with DB +City: Savannah, state: Georgia, Lat: 32.0286, Lng: -81.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leeds, New York 42.2554 -73.8929 matched with DB +City: Leeds, state: Alabama, Lat: 33.5436, Lng: -86.5639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monticello, Missouri 40.1188 -91.7130 matched with DB +City: Monticello, state: Minnesota, Lat: 45.2991, Lng: -93.7996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, South Carolina 33.7401 -81.8404 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, South Carolina 33.7401 -81.8404 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, South Carolina 33.7401 -81.8404 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Michael, Alaska 63.4664 -162.1324 matched with DB +City: St. Michael, state: Minnesota, Lat: 45.2014, Lng: -93.692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, Washington 46.8348 -119.9301 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Minnesota 45.9388 -95.4945 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Point, Oregon 42.4482 -122.1096 matched with DB +City: Rocky Point, state: New York, Lat: 40.9357, Lng: -72.9364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelby, Indiana 41.1934 -87.3427 matched with DB +City: Shelby, state: North Carolina, Lat: 35.2904, Lng: -81.5451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Texas 31.9177 -96.4265 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Texas 31.9177 -96.4265 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Texas 31.9177 -96.4265 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Texas 31.9177 -96.4265 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, Kansas 37.7090 -95.6970 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, Kansas 37.7090 -95.6970 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Valley, Connecticut 41.9083 -72.9924 matched with DB +City: Pleasant Valley, state: New York, Lat: 41.7697, Lng: -73.8049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ironton, Wisconsin 43.5453 -90.1436 matched with DB +City: Ironton, state: Ohio, Lat: 38.5323, Lng: -82.6779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodburn, Kentucky 36.8421 -86.5301 matched with DB +City: Woodburn, state: Oregon, Lat: 45.1472, Lng: -122.8603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodburn, Kentucky 36.8421 -86.5301 matched with DB +City: Woodburn, state: Virginia, Lat: 38.8503, Lng: -77.2322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Arkansas 35.0459 -92.7948 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellflower, Missouri 39.0038 -91.3521 matched with DB +City: Bellflower, state: California, Lat: 33.888, Lng: -118.1271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, New Jersey 39.4595 -75.2970 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, New Jersey 39.4595 -75.2970 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, New Jersey 39.4595 -75.2970 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saginaw, Missouri 37.0260 -94.4724 matched with DB +City: Saginaw, state: Michigan, Lat: 43.4199, Lng: -83.9501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Saginaw, Missouri 37.0260 -94.4724 matched with DB +City: Saginaw, state: Texas, Lat: 32.8657, Lng: -97.3654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patterson, Iowa 41.3484 -93.8776 matched with DB +City: Patterson, state: California, Lat: 37.4758, Lng: -121.1536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Patterson, Iowa 41.3484 -93.8776 matched with DB +City: Patterson, state: New York, Lat: 41.4849, Lng: -73.5921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Natchez, Louisiana 31.6743 -93.0456 matched with DB +City: Natchez, state: Mississippi, Lat: 31.5437, Lng: -91.3867, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Iowa 41.0235 -94.6130 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gorham, Illinois 37.7151 -89.4831 matched with DB +City: Gorham, state: Maine, Lat: 43.7034, Lng: -70.4581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pullman, West Virginia 39.1880 -80.9490 matched with DB +City: Pullman, state: Washington, Lat: 46.7336, Lng: -117.168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Washington 46.2988 -118.3126 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Kentucky 38.5954 -85.3174 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Kentucky 38.5954 -85.3174 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Kentucky 38.5954 -85.3174 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Kentucky 38.5954 -85.3174 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Kentucky 38.5954 -85.3174 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Kentucky 38.5954 -85.3174 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maitland, Pennsylvania 40.6242 -77.5019 matched with DB +City: Maitland, state: Florida, Lat: 28.6295, Lng: -81.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Philadelphia, Missouri 39.8387 -91.7391 matched with DB +City: Philadelphia, state: Pennsylvania, Lat: 40.0077, Lng: -75.1339, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Wisconsin 43.2658 -90.9566 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Kentucky 38.7563 -83.8844 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Kentucky 38.7563 -83.8844 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Kentucky 38.7563 -83.8844 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Kentucky 38.7563 -83.8844 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Kentucky 38.7563 -83.8844 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, California 38.4193 -121.5416 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, California 38.4193 -121.5416 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, New Mexico 32.7694 -108.2417 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, New Mexico 32.7694 -108.2417 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Kansas 37.6412 -94.6240 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Kansas 37.6412 -94.6240 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westbrook, Texas 32.3571 -101.0133 matched with DB +City: Westbrook, state: Maine, Lat: 43.6954, Lng: -70.3539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Long Beach, Minnesota 45.6509 -95.4297 matched with DB +City: Long Beach, state: New York, Lat: 40.5887, Lng: -73.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Minnesota 45.6509 -95.4297 matched with DB +City: Long Beach, state: Mississippi, Lat: 30.3608, Lng: -89.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Long Beach, Minnesota 45.6509 -95.4297 matched with DB +City: Long Beach, state: California, Lat: 33.7977, Lng: -118.167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit, Alabama 34.0274 -88.1678 matched with DB +City: Detroit, state: Michigan, Lat: 42.3834, Lng: -83.1024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, North Carolina 34.4149 -78.9114 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, North Carolina 34.4149 -78.9114 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Indiana 39.3912 -85.7175 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Indiana 39.3912 -85.7175 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Missouri City, Missouri 39.2383 -94.3026 matched with DB +City: Missouri City, state: Texas, Lat: 29.563, Lng: -95.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain, North Carolina 35.6721 -77.6317 matched with DB +City: Fountain, state: Colorado, Lat: 38.6886, Lng: -104.6829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danbury, Iowa 42.2364 -95.7216 matched with DB +City: Danbury, state: Connecticut, Lat: 41.4015, Lng: -73.4709, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malden, Indiana 41.3762 -87.0270 matched with DB +City: Malden, state: Massachusetts, Lat: 42.4305, Lng: -71.0576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Illinois 40.5731 -89.7248 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Indiana 39.8840 -87.4072 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Indiana 39.8840 -87.4072 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Indiana 39.8840 -87.4072 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brighton, Utah 40.6196 -111.6005 matched with DB +City: Brighton, state: Colorado, Lat: 39.9716, Lng: -104.7963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Utah 40.6196 -111.6005 matched with DB +City: Brighton, state: New York, Lat: 43.1175, Lng: -77.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brighton, Utah 40.6196 -111.6005 matched with DB +City: Brighton, state: Pennsylvania, Lat: 40.7023, Lng: -80.3677, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, South Dakota 45.0548 -97.3263 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Dakota 45.0548 -97.3263 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Dakota 45.0548 -97.3263 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Dakota 45.0548 -97.3263 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Dakota 45.0548 -97.3263 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, South Dakota 45.0548 -97.3263 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Missouri 39.6425 -94.0384 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Missouri 39.6425 -94.0384 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Missouri 39.6425 -94.0384 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Texas 32.1784 -97.2603 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Texas 32.1784 -97.2603 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Texas 32.1784 -97.2603 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Texas 32.1784 -97.2603 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Texas 32.1784 -97.2603 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irondale, Ohio 40.5728 -80.7259 matched with DB +City: Irondale, state: Alabama, Lat: 33.5439, Lng: -86.6606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosemont, Maryland 39.3317 -77.6214 matched with DB +City: Rosemont, state: California, Lat: 38.5478, Lng: -121.3553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greencastle, Missouri 40.2607 -92.8784 matched with DB +City: Greencastle, state: Indiana, Lat: 39.6432, Lng: -86.8418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, California 38.9744 -123.6909 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, California 38.9744 -123.6909 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, California 38.9744 -123.6909 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, California 38.9744 -123.6909 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, California 38.9744 -123.6909 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, California 38.9744 -123.6909 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, Arkansas 33.7388 -94.1480 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Selden, Kansas 39.5414 -100.5671 matched with DB +City: Selden, state: New York, Lat: 40.8714, Lng: -73.0466, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Georgia 32.7877 -84.5606 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenmont, Ohio 40.5190 -82.0925 matched with DB +City: Glenmont, state: Maryland, Lat: 39.0698, Lng: -77.0467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henrietta, Missouri 39.2371 -93.9384 matched with DB +City: Henrietta, state: New York, Lat: 43.0555, Lng: -77.6413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluffton, Georgia 31.5198 -84.8691 matched with DB +City: Bluffton, state: Indiana, Lat: 40.7424, Lng: -85.173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bluffton, Georgia 31.5198 -84.8691 matched with DB +City: Bluffton, state: South Carolina, Lat: 32.2135, Lng: -80.9316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Illinois 38.2648 -89.5035 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Illinois 38.2648 -89.5035 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Minnesota 46.1739 -95.9155 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Broadlands, Illinois 39.9087 -87.9971 matched with DB +City: Broadlands, state: Virginia, Lat: 39.0168, Lng: -77.5167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneida, Kansas 39.8668 -95.9398 matched with DB +City: Oneida, state: New York, Lat: 43.0769, Lng: -75.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malta, Idaho 42.3075 -113.3694 matched with DB +City: Malta, state: New York, Lat: 42.9853, Lng: -73.7879, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, South Carolina 33.4809 -81.5137 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, South Carolina 33.4809 -81.5137 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, South Carolina 33.4809 -81.5137 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ionia, Iowa 43.0359 -92.4584 matched with DB +City: Ionia, state: Michigan, Lat: 42.9773, Lng: -85.0727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Savage, Montana 47.4536 -104.3414 matched with DB +City: Savage, state: Minnesota, Lat: 44.7545, Lng: -93.3632, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Oregon 44.7513 -122.9277 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Oregon 44.7513 -122.9277 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Oregon 44.7513 -122.9277 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Oregon 44.7513 -122.9277 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Oregon 44.7513 -122.9277 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anoka, Indiana 40.7220 -86.2825 matched with DB +City: Anoka, state: Minnesota, Lat: 45.2099, Lng: -93.3893, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danbury, North Carolina 36.4111 -80.2120 matched with DB +City: Danbury, state: Connecticut, Lat: 41.4015, Lng: -73.4709, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flat Rock, Ohio 41.2353 -82.8593 matched with DB +City: Flat Rock, state: Michigan, Lat: 42.0991, Lng: -83.2716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, Missouri 38.6611 -92.6660 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, Missouri 38.6611 -92.6660 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holbrook, Nebraska 40.3047 -100.0099 matched with DB +City: Holbrook, state: New York, Lat: 40.7944, Lng: -73.07, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Holbrook, Nebraska 40.3047 -100.0099 matched with DB +City: Holbrook, state: Massachusetts, Lat: 42.1471, Lng: -71.0057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, Ohio 39.5639 -84.6391 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, Ohio 39.5639 -84.6391 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Templeton, Pennsylvania 40.9185 -79.4603 matched with DB +City: Templeton, state: California, Lat: 35.556, Lng: -120.7181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patterson, Arkansas 35.2590 -91.2350 matched with DB +City: Patterson, state: California, Lat: 37.4758, Lng: -121.1536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Patterson, Arkansas 35.2590 -91.2350 matched with DB +City: Patterson, state: New York, Lat: 41.4849, Lng: -73.5921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Ohio 40.1760 -80.7995 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Ohio 40.1760 -80.7995 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Ohio 40.1760 -80.7995 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Ohio 40.1760 -80.7995 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Ohio 40.1760 -80.7995 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Ohio 40.1760 -80.7995 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thompson, Pennsylvania 41.8636 -75.5141 matched with DB +City: Thompson, state: New York, Lat: 41.6474, Lng: -74.6745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Oklahoma 36.1823 -96.5692 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Oklahoma 36.1823 -96.5692 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brookside, Colorado 38.4135 -105.1909 matched with DB +City: Brookside, state: Delaware, Lat: 39.6665, Lng: -75.7152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Missouri 38.5695 -90.8812 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Missouri 38.5695 -90.8812 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Missouri 38.5695 -90.8812 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Texas 31.0252 -95.7539 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Miami, Oklahoma 36.9202 -94.8797 matched with DB +City: North Miami, state: Florida, Lat: 25.9008, Lng: -80.1686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk City, Kansas 37.2896 -95.9099 matched with DB +City: Elk City, state: Oklahoma, Lat: 35.3862, Lng: -99.4301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boone, Colorado 38.2495 -104.2583 matched with DB +City: Boone, state: Iowa, Lat: 42.0531, Lng: -93.877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Boone, Colorado 38.2495 -104.2583 matched with DB +City: Boone, state: North Carolina, Lat: 36.2111, Lng: -81.6669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Peter, Illinois 38.8676 -88.8505 matched with DB +City: St. Peter, state: Minnesota, Lat: 44.3295, Lng: -93.9658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belleville, New York 43.7893 -76.1153 matched with DB +City: Belleville, state: Illinois, Lat: 38.5164, Lng: -89.99, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belleville, New York 43.7893 -76.1153 matched with DB +City: Belleville, state: New Jersey, Lat: 40.795, Lng: -74.1617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, Texas 30.4871 -95.9899 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Texas 30.4871 -95.9899 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Texas 30.4871 -95.9899 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maitland, Missouri 40.2020 -95.0780 matched with DB +City: Maitland, state: Florida, Lat: 28.6295, Lng: -81.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartsville, Indiana 39.2669 -85.6991 matched with DB +City: Hartsville, state: Tennessee, Lat: 36.3921, Lng: -86.1568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: North Bend, Pennsylvania 41.3473 -77.7026 matched with DB +City: North Bend, state: Oregon, Lat: 43.4075, Lng: -124.2364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, South Carolina 33.6281 -81.3079 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Oklahoma 35.9816 -97.9108 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Oklahoma 35.9816 -97.9108 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Oklahoma 35.9816 -97.9108 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Oklahoma 35.9816 -97.9108 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Oklahoma 35.9816 -97.9108 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Texas 29.9063 -96.6758 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Texas 29.9063 -96.6758 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Texas 29.9063 -96.6758 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carson, North Dakota 46.4223 -101.5706 matched with DB +City: Carson, state: California, Lat: 33.8374, Lng: -118.2559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Hill, Louisiana 31.4427 -92.5695 matched with DB +City: Rock Hill, state: South Carolina, Lat: 34.9415, Lng: -81.0241, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Michigan 43.0872 -84.1933 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Michigan 43.0872 -84.1933 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Michigan 43.0872 -84.1933 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Michigan 43.0872 -84.1933 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Montana 47.3172 -114.3569 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Montana 47.3172 -114.3569 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sterling, Ohio 40.9663 -81.8440 matched with DB +City: Sterling, state: Illinois, Lat: 41.7996, Lng: -89.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Ohio 40.9663 -81.8440 matched with DB +City: Sterling, state: Colorado, Lat: 40.6205, Lng: -103.1925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sterling, Ohio 40.9663 -81.8440 matched with DB +City: Sterling, state: Virginia, Lat: 39.0052, Lng: -77.405, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morganton, Georgia 34.8749 -84.2442 matched with DB +City: Morganton, state: North Carolina, Lat: 35.7408, Lng: -81.7002, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goose Creek, Kentucky 38.2934 -85.5906 matched with DB +City: Goose Creek, state: South Carolina, Lat: 32.9927, Lng: -80.0055, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Colorado 40.1180 -105.3914 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Colorado 40.1180 -105.3914 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Grove, Maryland 39.6802 -78.6904 matched with DB +City: Pleasant Grove, state: Alabama, Lat: 33.494, Lng: -86.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Grove, Maryland 39.6802 -78.6904 matched with DB +City: Pleasant Grove, state: Utah, Lat: 40.3716, Lng: -111.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Americus, Indiana 40.5254 -86.7475 matched with DB +City: Americus, state: Georgia, Lat: 32.0736, Lng: -84.2248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Kentucky 36.7224 -87.2626 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Kentucky 36.7224 -87.2626 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Kentucky 36.7224 -87.2626 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keller, Virginia 37.6211 -75.7644 matched with DB +City: Keller, state: Texas, Lat: 32.9335, Lng: -97.2256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, Louisiana 30.9527 -92.1052 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, Louisiana 30.9527 -92.1052 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, Ohio 40.0758 -80.7919 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Ohio 40.0758 -80.7919 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Ohio 40.0758 -80.7919 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Ohio 40.0758 -80.7919 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal, New Mexico 36.0290 -108.9898 matched with DB +City: Crystal, state: Minnesota, Lat: 45.0377, Lng: -93.3599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Indiana 40.6694 -85.8315 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Indiana 40.6694 -85.8315 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Indiana 40.6694 -85.8315 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramona, South Dakota 44.1199 -97.2154 matched with DB +City: Ramona, state: California, Lat: 33.0474, Lng: -116.8766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Minnesota 45.4632 -96.4414 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Tennessee 35.5823 -89.7525 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Oklahoma 35.1374 -94.5393 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seymour, Illinois 40.1068 -88.4269 matched with DB +City: Seymour, state: Indiana, Lat: 38.9476, Lng: -85.8911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Seymour, Illinois 40.1068 -88.4269 matched with DB +City: Seymour, state: Tennessee, Lat: 35.8783, Lng: -83.7669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blooming Grove, Indiana 39.5023 -85.0647 matched with DB +City: Blooming Grove, state: New York, Lat: 41.3948, Lng: -74.184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perry, Illinois 39.7821 -90.7474 matched with DB +City: Perry, state: Georgia, Lat: 32.472, Lng: -83.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athens, Louisiana 32.6580 -93.0277 matched with DB +City: Athens, state: Alabama, Lat: 34.7843, Lng: -86.9503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Louisiana 32.6580 -93.0277 matched with DB +City: Athens, state: Ohio, Lat: 39.327, Lng: -82.0987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Louisiana 32.6580 -93.0277 matched with DB +City: Athens, state: Tennessee, Lat: 35.4573, Lng: -84.6045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Louisiana 32.6580 -93.0277 matched with DB +City: Athens, state: Texas, Lat: 32.2041, Lng: -95.8321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Athens, Louisiana 32.6580 -93.0277 matched with DB +City: Athens, state: Georgia, Lat: 33.9508, Lng: -83.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shirley, Arkansas 35.6442 -92.3137 matched with DB +City: Shirley, state: New York, Lat: 40.7936, Lng: -72.8748, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Kentucky 38.6969 -84.9074 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Kentucky 38.6969 -84.9074 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boston, Pennsylvania 40.3120 -79.8237 matched with DB +City: Boston, state: Massachusetts, Lat: 42.3188, Lng: -71.0852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greeley, Kansas 38.3676 -95.1272 matched with DB +City: Greeley, state: Colorado, Lat: 40.4152, Lng: -104.7706, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastlake, Michigan 44.2449 -86.2927 matched with DB +City: Eastlake, state: Ohio, Lat: 41.6581, Lng: -81.4322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, South Carolina 33.3970 -79.9637 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, South Carolina 33.3970 -79.9637 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Wisconsin 44.0074 -88.8425 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Wisconsin 44.0074 -88.8425 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabethtown, Ohio 39.1622 -84.8037 matched with DB +City: Elizabethtown, state: Pennsylvania, Lat: 40.1533, Lng: -76.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elizabethtown, Ohio 39.1622 -84.8037 matched with DB +City: Elizabethtown, state: Kentucky, Lat: 37.7031, Lng: -85.8773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, North Carolina 35.6161 -81.9833 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Pleasant, Arkansas 35.9819 -91.7771 matched with DB +City: Mount Pleasant, state: Iowa, Lat: 40.9625, Lng: -91.5452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Arkansas 35.9819 -91.7771 matched with DB +City: Mount Pleasant, state: Michigan, Lat: 43.5966, Lng: -84.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Arkansas 35.9819 -91.7771 matched with DB +City: Mount Pleasant, state: South Carolina, Lat: 32.8537, Lng: -79.8203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Arkansas 35.9819 -91.7771 matched with DB +City: Mount Pleasant, state: Texas, Lat: 33.1586, Lng: -94.9727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Arkansas 35.9819 -91.7771 matched with DB +City: Mount Pleasant, state: Wisconsin, Lat: 42.7129, Lng: -87.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Pleasant, Arkansas 35.9819 -91.7771 matched with DB +City: Mount Pleasant, state: New York, Lat: 41.1119, Lng: -73.8121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Wisconsin 43.3363 -88.8182 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Wisconsin 43.3363 -88.8182 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Wisconsin 43.3363 -88.8182 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, Missouri 37.4987 -89.7299 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Missouri 37.4987 -89.7299 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Missouri 37.4987 -89.7299 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Michigan 43.7814 -85.5067 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Michigan 43.7814 -85.5067 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Michigan 43.7814 -85.5067 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roy, New Mexico 35.9451 -104.1963 matched with DB +City: Roy, state: Utah, Lat: 41.1714, Lng: -112.0485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisonburg, Louisiana 31.7681 -91.8250 matched with DB +City: Harrisonburg, state: Virginia, Lat: 38.4362, Lng: -78.8735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grass Valley, Oregon 45.3591 -120.7844 matched with DB +City: Grass Valley, state: California, Lat: 39.2238, Lng: -121.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gresham, Nebraska 41.0284 -97.4011 matched with DB +City: Gresham, state: Oregon, Lat: 45.5021, Lng: -122.4413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waco, North Carolina 35.3622 -81.4287 matched with DB +City: Waco, state: Texas, Lat: 31.5599, Lng: -97.1882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carroll, Nebraska 42.2758 -97.1908 matched with DB +City: Carroll, state: Iowa, Lat: 42.0699, Lng: -94.8646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Wisconsin 45.3006 -88.5145 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Wisconsin 45.3006 -88.5145 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Wisconsin 45.3006 -88.5145 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Wisconsin 45.3006 -88.5145 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Wisconsin 45.3006 -88.5145 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, Ohio 40.0638 -81.0696 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, Ohio 40.0638 -81.0696 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gary, Minnesota 47.3725 -96.2656 matched with DB +City: Gary, state: Indiana, Lat: 41.5905, Lng: -87.3473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gatesville, North Carolina 36.4072 -76.7566 matched with DB +City: Gatesville, state: Texas, Lat: 31.4445, Lng: -97.7317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clearwater, Nebraska 42.1707 -98.1897 matched with DB +City: Clearwater, state: Florida, Lat: 27.979, Lng: -82.7623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Minnesota 44.0897 -96.1944 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Vernon, Arkansas 35.2236 -92.1240 matched with DB +City: Mount Vernon, state: New York, Lat: 40.9136, Lng: -73.8291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Arkansas 35.2236 -92.1240 matched with DB +City: Mount Vernon, state: Ohio, Lat: 40.3854, Lng: -82.4737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Arkansas 35.2236 -92.1240 matched with DB +City: Mount Vernon, state: Virginia, Lat: 38.714, Lng: -77.1043, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Arkansas 35.2236 -92.1240 matched with DB +City: Mount Vernon, state: Illinois, Lat: 38.314, Lng: -88.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Vernon, Arkansas 35.2236 -92.1240 matched with DB +City: Mount Vernon, state: Washington, Lat: 48.4203, Lng: -122.3115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Idaho 47.4675 -116.8034 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Idaho 47.4675 -116.8034 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Idaho 47.4675 -116.8034 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Idaho 47.4675 -116.8034 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Idaho 47.4675 -116.8034 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Idaho 47.4675 -116.8034 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Georgia 33.4625 -82.7055 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Georgia 33.4625 -82.7055 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blue Springs, Mississippi 34.3922 -88.8779 matched with DB +City: Blue Springs, state: Missouri, Lat: 39.0124, Lng: -94.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Maryland 38.2751 -75.2733 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Maryland 38.2751 -75.2733 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Maryland 38.2751 -75.2733 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Maryland 38.2751 -75.2733 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Maryland 38.2751 -75.2733 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corinth, Kentucky 38.4997 -84.6031 matched with DB +City: Corinth, state: Mississippi, Lat: 34.9474, Lng: -88.5143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Corinth, Kentucky 38.4997 -84.6031 matched with DB +City: Corinth, state: Texas, Lat: 33.1434, Lng: -97.0682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gainesville, Alabama 32.8149 -88.1608 matched with DB +City: Gainesville, state: Virginia, Lat: 38.7931, Lng: -77.6347, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Alabama 32.8149 -88.1608 matched with DB +City: Gainesville, state: Georgia, Lat: 34.2902, Lng: -83.8294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Alabama 32.8149 -88.1608 matched with DB +City: Gainesville, state: Florida, Lat: 29.6804, Lng: -82.3459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gainesville, Alabama 32.8149 -88.1608 matched with DB +City: Gainesville, state: Texas, Lat: 33.639, Lng: -97.1487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hewitt, Minnesota 46.3240 -95.0902 matched with DB +City: Hewitt, state: Texas, Lat: 31.452, Lng: -97.196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethpage, Tennessee 36.4843 -86.3085 matched with DB +City: Bethpage, state: New York, Lat: 40.7495, Lng: -73.4856, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fillmore, Illinois 39.1154 -89.2785 matched with DB +City: Fillmore, state: California, Lat: 34.3989, Lng: -118.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marathon, Texas 30.2157 -103.2433 matched with DB +City: Marathon, state: Florida, Lat: 24.7263, Lng: -81.0374, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burton, Texas 30.1813 -96.5999 matched with DB +City: Burton, state: Michigan, Lat: 42.9974, Lng: -83.6175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairhaven, Minnesota 45.3231 -94.2040 matched with DB +City: Fairhaven, state: Massachusetts, Lat: 41.6394, Lng: -70.8732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davis, North Carolina 34.7996 -76.4641 matched with DB +City: Davis, state: California, Lat: 38.5553, Lng: -121.737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Oklahoma 35.4656 -94.5442 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Oklahoma 35.4656 -94.5442 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Apple Valley, North Dakota 46.8209 -100.5993 matched with DB +City: Apple Valley, state: Minnesota, Lat: 44.7457, Lng: -93.2004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Apple Valley, North Dakota 46.8209 -100.5993 matched with DB +City: Apple Valley, state: California, Lat: 34.5352, Lng: -117.2109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Iowa 41.5724 -91.0822 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Helena, Ohio 41.3403 -83.2921 matched with DB +City: Helena, state: Alabama, Lat: 33.2837, Lng: -86.8791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Helena, Ohio 41.3403 -83.2921 matched with DB +City: Helena, state: Montana, Lat: 46.5965, Lng: -112.0202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Virginia 36.8292 -78.4653 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Alabama 31.3007 -86.3976 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Alabama 31.3007 -86.3976 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Alabama 31.3007 -86.3976 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midvale, Idaho 44.4618 -116.7435 matched with DB +City: Midvale, state: Utah, Lat: 40.6148, Lng: -111.8927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Minnesota 43.9241 -94.4341 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Minnesota 43.9241 -94.4341 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Statesville, Tennessee 36.0198 -86.1206 matched with DB +City: Statesville, state: North Carolina, Lat: 35.7842, Lng: -80.8713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Kentucky 37.1881 -87.5510 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Kentucky 37.1881 -87.5510 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Illinois 41.4807 -88.4559 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middle River, Minnesota 48.4349 -96.1617 matched with DB +City: Middle River, state: Maryland, Lat: 39.3436, Lng: -76.4253, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Petersburg, Pennsylvania 41.1610 -79.6545 matched with DB +City: St. Petersburg, state: Florida, Lat: 27.7931, Lng: -82.6652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greeley, Iowa 42.5849 -91.3417 matched with DB +City: Greeley, state: Colorado, Lat: 40.4152, Lng: -104.7706, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maynard, Minnesota 44.9055 -95.4687 matched with DB +City: Maynard, state: Massachusetts, Lat: 42.4264, Lng: -71.4561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakley, Michigan 43.1434 -84.1685 matched with DB +City: Oakley, state: California, Lat: 37.9929, Lng: -121.6952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gateway, Arkansas 36.4854 -93.9365 matched with DB +City: Gateway, state: Florida, Lat: 26.5793, Lng: -81.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Arkansas 34.3730 -91.1375 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Arkansas 34.3730 -91.1375 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainville, Illinois 39.7848 -91.1815 matched with DB +City: Plainville, state: Massachusetts, Lat: 42.0141, Lng: -71.3364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Missouri 37.4367 -90.9601 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Missouri 37.4367 -90.9601 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Florida 27.9843 -81.6199 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Florida 27.9843 -81.6199 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneida, Kentucky 37.2701 -83.6496 matched with DB +City: Oneida, state: New York, Lat: 43.0769, Lng: -75.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center, Indiana 40.4368 -86.0596 matched with DB +City: Center, state: Pennsylvania, Lat: 40.6483, Lng: -80.2977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Kentucky 37.6028 -87.1126 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, Oklahoma 34.8483 -99.0223 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest, Indiana 40.3736 -86.3328 matched with DB +City: Forest, state: Virginia, Lat: 37.3728, Lng: -79.2831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamont, Oklahoma 36.6911 -97.5583 matched with DB +City: Lamont, state: California, Lat: 35.2659, Lng: -118.9159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Alabama 32.9938 -87.9071 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Alabama 32.9938 -87.9071 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Alabama 32.9938 -87.9071 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goshen, New Jersey 39.1465 -74.8524 matched with DB +City: Goshen, state: New York, Lat: 41.3817, Lng: -74.3498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Goshen, New Jersey 39.1465 -74.8524 matched with DB +City: Goshen, state: Indiana, Lat: 41.5743, Lng: -85.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rincon, New Mexico 32.6726 -107.0759 matched with DB +City: Rincon, state: Georgia, Lat: 32.2947, Lng: -81.2353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Iowa 40.8731 -95.5647 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Iowa 40.8731 -95.5647 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Napoleon, Indiana 39.2043 -85.3279 matched with DB +City: Napoleon, state: Ohio, Lat: 41.3977, Lng: -84.1244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Kentucky 36.7904 -89.0132 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kentucky 36.7904 -89.0132 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kentucky 36.7904 -89.0132 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kentucky 36.7904 -89.0132 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Kentucky 36.7904 -89.0132 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cumberland, Iowa 41.2732 -94.8705 matched with DB +City: Cumberland, state: Maryland, Lat: 39.6515, Lng: -78.7584, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cumberland, Iowa 41.2732 -94.8705 matched with DB +City: Cumberland, state: Rhode Island, Lat: 41.9703, Lng: -71.4198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Tennessee 36.6208 -86.3425 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Tennessee 36.6208 -86.3425 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Tennessee 36.6208 -86.3425 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Tennessee 36.6208 -86.3425 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Louisiana 32.7893 -92.8672 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ukiah, Oregon 45.1344 -118.9331 matched with DB +City: Ukiah, state: California, Lat: 39.1464, Lng: -123.2105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Iowa 40.6871 -95.5686 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Iowa 40.6871 -95.5686 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindsay, Nebraska 41.6991 -97.6939 matched with DB +City: Lindsay, state: California, Lat: 36.2082, Lng: -119.0897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rose Hill, Iowa 41.3203 -92.4637 matched with DB +City: Rose Hill, state: Virginia, Lat: 38.7872, Lng: -77.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Heath, Alabama 31.3579 -86.4673 matched with DB +City: Heath, state: Ohio, Lat: 40.0241, Lng: -82.4413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Heath, Alabama 31.3579 -86.4673 matched with DB +City: Heath, state: Texas, Lat: 32.8439, Lng: -96.4674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Missouri 39.7226 -94.6404 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Missouri 39.7226 -94.6404 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Missouri 39.7226 -94.6404 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Idaho 46.2409 -116.6242 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Idaho 46.2409 -116.6242 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Idaho 46.2409 -116.6242 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Idaho 46.2409 -116.6242 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Idaho 46.2409 -116.6242 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Delaware 39.0714 -75.4760 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bladensburg, Ohio 40.2852 -82.2837 matched with DB +City: Bladensburg, state: Maryland, Lat: 38.9424, Lng: -76.9264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Iowa 42.4001 -92.7988 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santee, Nebraska 42.8386 -97.8495 matched with DB +City: Santee, state: California, Lat: 32.8554, Lng: -116.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Creek, Oklahoma 34.4022 -96.8249 matched with DB +City: Mill Creek, state: Washington, Lat: 47.8631, Lng: -122.2037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Staunton, Indiana 39.4864 -87.1890 matched with DB +City: Staunton, state: Virginia, Lat: 38.1593, Lng: -79.0611, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Texas 30.9214 -94.6002 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Texas 30.9214 -94.6002 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal Lake, Iowa 43.2230 -93.7927 matched with DB +City: Crystal Lake, state: Illinois, Lat: 42.2333, Lng: -88.3351, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ewing, Kentucky 38.4278 -83.8619 matched with DB +City: Ewing, state: New Jersey, Lat: 40.265, Lng: -74.8006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Joplin, Montana 48.5590 -110.7730 matched with DB +City: Joplin, state: Missouri, Lat: 37.0757, Lng: -94.5018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, North Carolina 36.1865 -78.1113 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, North Carolina 36.1865 -78.1113 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy Hook, Wisconsin 42.5466 -90.6168 matched with DB +City: Sandy Hook, state: Connecticut, Lat: 41.4128, Lng: -73.244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elyria, Kansas 38.2896 -97.6339 matched with DB +City: Elyria, state: Ohio, Lat: 41.376, Lng: -82.106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Lorenzo, New Mexico 32.8086 -107.9221 matched with DB +City: San Lorenzo, state: California, Lat: 37.6733, Lng: -122.1332, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Nebraska 40.9446 -96.9855 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Kansas 38.6550 -96.1697 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Arkansas 33.3609 -93.7142 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moore, Montana 46.9750 -109.6949 matched with DB +City: Moore, state: Oklahoma, Lat: 35.3293, Lng: -97.4757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Moore, Montana 46.9750 -109.6949 matched with DB +City: Moore, state: Pennsylvania, Lat: 40.7798, Lng: -75.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, New Mexico 32.8149 -108.0897 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, New Mexico 32.8149 -108.0897 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, New Mexico 32.8149 -108.0897 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, New Mexico 32.8149 -108.0897 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, New Mexico 32.8149 -108.0897 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, New Mexico 32.8149 -108.0897 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Mississippi 33.4271 -90.8808 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Kansas 39.3456 -95.1172 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Kansas 39.3456 -95.1172 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Kansas 39.3456 -95.1172 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Wisconsin 43.9622 -90.3791 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Wisconsin 43.9622 -90.3791 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, Illinois 41.2157 -88.5050 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, Illinois 41.2157 -88.5050 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pomona, Missouri 36.8671 -91.9134 matched with DB +City: Pomona, state: New Jersey, Lat: 39.4688, Lng: -74.5502, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pomona, Missouri 36.8671 -91.9134 matched with DB +City: Pomona, state: California, Lat: 34.0585, Lng: -117.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Georgia 31.1012 -81.7279 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Georgia 31.1012 -81.7279 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Vermont 44.1028 -72.9937 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Vermont 44.1028 -72.9937 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Vermont 44.1028 -72.9937 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Vermont 44.1028 -72.9937 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maywood, Nebraska 40.6587 -100.6223 matched with DB +City: Maywood, state: New Jersey, Lat: 40.9025, Lng: -74.0634, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, Nebraska 40.6587 -100.6223 matched with DB +City: Maywood, state: Illinois, Lat: 41.8798, Lng: -87.8442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Maywood, Nebraska 40.6587 -100.6223 matched with DB +City: Maywood, state: California, Lat: 33.9886, Lng: -118.1877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Nebraska 42.4507 -96.5787 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryant, Indiana 40.5359 -84.9633 matched with DB +City: Bryant, state: Arkansas, Lat: 34.6152, Lng: -92.4914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Mississippi 31.8698 -90.1648 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Mississippi 31.8698 -90.1648 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Mississippi 31.8698 -90.1648 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, North Dakota 48.1557 -101.1664 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, North Dakota 48.1557 -101.1664 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Imperial, Texas 31.2668 -102.6947 matched with DB +City: Imperial, state: California, Lat: 32.839, Lng: -115.572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Ohio 39.7332 -83.4766 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, Minnesota 44.2448 -92.2958 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Georgia 31.7222 -82.6968 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Island, Texas 29.6628 -94.6883 matched with DB +City: Oak Island, state: North Carolina, Lat: 33.9434, Lng: -78.1366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jeffersonville, Illinois 38.4425 -88.4040 matched with DB +City: Jeffersonville, state: Indiana, Lat: 38.3376, Lng: -85.7026, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rogers, Ohio 40.7897 -80.6275 matched with DB +City: Rogers, state: Minnesota, Lat: 45.1865, Lng: -93.5783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rogers, Ohio 40.7897 -80.6275 matched with DB +City: Rogers, state: Arkansas, Lat: 36.317, Lng: -94.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest, Louisiana 32.7925 -91.4126 matched with DB +City: Forest, state: Virginia, Lat: 37.3728, Lng: -79.2831, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gladstone, North Dakota 46.8595 -102.5701 matched with DB +City: Gladstone, state: Missouri, Lat: 39.2134, Lng: -94.5592, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gladstone, North Dakota 46.8595 -102.5701 matched with DB +City: Gladstone, state: Oregon, Lat: 45.3864, Lng: -122.5934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rensselaer, Missouri 39.6692 -91.5387 matched with DB +City: Rensselaer, state: New York, Lat: 42.6465, Lng: -73.7328, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Nebraska 40.9567 -96.7816 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keller, Washington 48.0852 -118.7164 matched with DB +City: Keller, state: Texas, Lat: 32.9335, Lng: -97.2256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robertsville, Ohio 40.7621 -81.1936 matched with DB +City: Robertsville, state: New Jersey, Lat: 40.3395, Lng: -74.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Abington, Indiana 39.7331 -84.9630 matched with DB +City: Abington, state: Pennsylvania, Lat: 40.1108, Lng: -75.1146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Abington, Indiana 39.7331 -84.9630 matched with DB +City: Abington, state: Massachusetts, Lat: 42.118, Lng: -70.959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant Grove, Arkansas 35.8205 -91.9070 matched with DB +City: Pleasant Grove, state: Alabama, Lat: 33.494, Lng: -86.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasant Grove, Arkansas 35.8205 -91.9070 matched with DB +City: Pleasant Grove, state: Utah, Lat: 40.3716, Lng: -111.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Colorado 38.8468 -105.1579 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Colorado 38.8468 -105.1579 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Colorado 38.8468 -105.1579 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Illinois 40.2321 -89.8415 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Illinois 40.2321 -89.8415 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Illinois 40.2321 -89.8415 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Illinois 37.2163 -89.2078 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Illinois 41.0238 -90.3535 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Illinois 41.0238 -90.3535 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Illinois 41.0238 -90.3535 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Illinois 41.0238 -90.3535 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendale, South Carolina 34.9452 -81.8364 matched with DB +City: Glendale, state: Wisconsin, Lat: 43.1287, Lng: -87.9277, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, South Carolina 34.9452 -81.8364 matched with DB +City: Glendale, state: California, Lat: 34.1819, Lng: -118.2468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glendale, South Carolina 34.9452 -81.8364 matched with DB +City: Glendale, state: Arizona, Lat: 33.5791, Lng: -112.2311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Nebraska 41.1931 -96.7422 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Nebraska 41.1931 -96.7422 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Nebraska 41.1931 -96.7422 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerville, Indiana 38.2786 -87.3770 matched with DB +City: Somerville, state: New Jersey, Lat: 40.5696, Lng: -74.6092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerville, Indiana 38.2786 -87.3770 matched with DB +City: Somerville, state: Massachusetts, Lat: 42.3908, Lng: -71.1014, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Illinois 40.0994 -89.5903 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Flat Rock, Indiana 39.3642 -85.8317 matched with DB +City: Flat Rock, state: Michigan, Lat: 42.0991, Lng: -83.2716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davenport, North Dakota 46.7148 -97.0657 matched with DB +City: Davenport, state: Iowa, Lat: 41.5565, Lng: -90.6053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Davenport, North Dakota 46.7148 -97.0657 matched with DB +City: Davenport, state: Florida, Lat: 28.1587, Lng: -81.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bluffton, Minnesota 46.4696 -95.2338 matched with DB +City: Bluffton, state: Indiana, Lat: 40.7424, Lng: -85.173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bluffton, Minnesota 46.4696 -95.2338 matched with DB +City: Bluffton, state: South Carolina, Lat: 32.2135, Lng: -80.9316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Falmouth, Michigan 44.2429 -85.0848 matched with DB +City: Falmouth, state: Maine, Lat: 43.7476, Lng: -70.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Falmouth, Michigan 44.2429 -85.0848 matched with DB +City: Falmouth, state: Massachusetts, Lat: 41.5913, Lng: -70.5912, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manlius, Illinois 41.4557 -89.6692 matched with DB +City: Manlius, state: New York, Lat: 43.049, Lng: -75.9792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Medina, North Dakota 46.8938 -99.2999 matched with DB +City: Medina, state: Ohio, Lat: 41.1358, Lng: -81.8695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk City, Idaho 45.8266 -115.4378 matched with DB +City: Elk City, state: Oklahoma, Lat: 35.3862, Lng: -99.4301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milledgeville, Tennessee 35.3776 -88.3660 matched with DB +City: Milledgeville, state: Georgia, Lat: 33.0874, Lng: -83.2414, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Montana 47.3222 -109.9481 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newtown, Indiana 40.2045 -87.1483 matched with DB +City: Newtown, state: Pennsylvania, Lat: 39.992, Lng: -75.4106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hackensack, Minnesota 46.9270 -94.5161 matched with DB +City: Hackensack, state: New Jersey, Lat: 40.8891, Lng: -74.0462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasant View, Kentucky 36.6782 -84.1284 matched with DB +City: Pleasant View, state: Utah, Lat: 41.3249, Lng: -112.0011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Mississippi 34.2691 -89.5833 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Mississippi 34.2691 -89.5833 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngstown, Pennsylvania 40.2798 -79.3659 matched with DB +City: Youngstown, state: Ohio, Lat: 41.0993, Lng: -80.6463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Tennessee 36.3562 -82.0347 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Tennessee 36.3562 -82.0347 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ridgeland, Wisconsin 45.2025 -91.8965 matched with DB +City: Ridgeland, state: Mississippi, Lat: 32.4236, Lng: -90.1481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Illinois 41.0315 -90.0918 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Illinois 41.0315 -90.0918 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, West Virginia 39.3254 -79.5546 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, West Virginia 39.3254 -79.5546 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, West Virginia 39.3254 -79.5546 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, West Virginia 39.3254 -79.5546 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kirkwood, California 38.6930 -120.0641 matched with DB +City: Kirkwood, state: Missouri, Lat: 38.5788, Lng: -90.4203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Oklahoma 36.7546 -101.0752 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gary, South Dakota 44.7941 -96.4574 matched with DB +City: Gary, state: Indiana, Lat: 41.5905, Lng: -87.3473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Florida 28.8824 -81.7812 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Wyoming 44.4471 -108.4320 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Indiana 38.9854 -85.6101 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Indiana 38.9854 -85.6101 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterford, Virginia 39.1859 -77.6109 matched with DB +City: Waterford, state: California, Lat: 37.6429, Lng: -120.7553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterford, Virginia 39.1859 -77.6109 matched with DB +City: Waterford, state: New Jersey, Lat: 39.7415, Lng: -74.8207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raleigh, West Virginia 37.7575 -81.1699 matched with DB +City: Raleigh, state: North Carolina, Lat: 35.8324, Lng: -78.6429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fenton, Iowa 43.2184 -94.4279 matched with DB +City: Fenton, state: Michigan, Lat: 42.7994, Lng: -83.7144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marquette, Nebraska 41.0063 -98.0098 matched with DB +City: Marquette, state: Michigan, Lat: 46.544, Lng: -87.4082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Indiana 40.9463 -86.2642 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Indiana 40.9463 -86.2642 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasanton, New Mexico 33.2759 -108.8792 matched with DB +City: Pleasanton, state: California, Lat: 37.6663, Lng: -121.8805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasanton, New Mexico 33.2759 -108.8792 matched with DB +City: Pleasanton, state: Texas, Lat: 28.9642, Lng: -98.4957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Alabama 32.7333 -85.5764 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Alabama 32.7333 -85.5764 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freetown, Indiana 38.9773 -86.1269 matched with DB +City: Freetown, state: Massachusetts, Lat: 41.7714, Lng: -71.0157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davidson, Oklahoma 34.2418 -99.0783 matched with DB +City: Davidson, state: North Carolina, Lat: 35.484, Lng: -80.8247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Nebraska 40.8383 -99.2696 matched with DB +City: Amherst, state: Ohio, Lat: 41.4022, Lng: -82.2303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Nebraska 40.8383 -99.2696 matched with DB +City: Amherst, state: New Hampshire, Lat: 42.8706, Lng: -71.6068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Nebraska 40.8383 -99.2696 matched with DB +City: Amherst, state: New York, Lat: 43.0117, Lng: -78.757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, West Virginia 39.5927 -80.2469 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynchburg, South Carolina 34.0600 -80.0770 matched with DB +City: Lynchburg, state: Virginia, Lat: 37.4003, Lng: -79.1909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Compton, Illinois 41.6942 -89.0858 matched with DB +City: Compton, state: California, Lat: 33.893, Lng: -118.2274, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keene, Kentucky 37.9431 -84.6411 matched with DB +City: Keene, state: New Hampshire, Lat: 42.9494, Lng: -72.2998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anniston, Missouri 36.8243 -89.3267 matched with DB +City: Anniston, state: Alabama, Lat: 33.6712, Lng: -85.8135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, Oklahoma 35.6365 -99.1861 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, Oklahoma 35.6365 -99.1861 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sylvania, Pennsylvania 41.8029 -76.8607 matched with DB +City: Sylvania, state: Ohio, Lat: 41.71, Lng: -83.7092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Indiana 40.3477 -87.0375 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Indiana 40.3477 -87.0375 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scranton, Arkansas 35.3606 -93.5394 matched with DB +City: Scranton, state: Pennsylvania, Lat: 41.4044, Lng: -75.6649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dent, Minnesota 46.5530 -95.7189 matched with DB +City: Dent, state: Ohio, Lat: 39.1915, Lng: -84.6601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, South Carolina 34.3561 -82.0572 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, South Carolina 34.3561 -82.0572 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Oregon 44.3303 -123.3628 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Oregon 44.3303 -123.3628 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlboro, Ohio 40.9505 -81.2165 matched with DB +City: Marlboro, state: New Jersey, Lat: 40.3427, Lng: -74.2567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saline, Louisiana 32.1631 -92.9768 matched with DB +City: Saline, state: Michigan, Lat: 42.174, Lng: -83.778, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cairo, Missouri 39.5112 -92.4411 matched with DB +City: Cairo, state: Georgia, Lat: 30.879, Lng: -84.205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raleigh, Illinois 37.8262 -88.5304 matched with DB +City: Raleigh, state: North Carolina, Lat: 35.8324, Lng: -78.6429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Pennsylvania 39.9304 -80.0577 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Pennsylvania 39.9304 -80.0577 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Pennsylvania 39.9304 -80.0577 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Georgia 30.9428 -83.0029 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moorhead, Iowa 41.9233 -95.8514 matched with DB +City: Moorhead, state: Minnesota, Lat: 46.8673, Lng: -96.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Union, Nebraska 40.8144 -95.9215 matched with DB +City: Union, state: Missouri, Lat: 38.4399, Lng: -90.9927, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Nebraska 40.8144 -95.9215 matched with DB +City: Union, state: New Jersey, Lat: 40.6953, Lng: -74.2697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Union, Nebraska 40.8144 -95.9215 matched with DB +City: Union, state: New York, Lat: 42.1258, Lng: -76.0329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilton, Minnesota 47.5071 -94.9985 matched with DB +City: Wilton, state: New York, Lat: 43.1502, Lng: -73.7276, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Illinois 42.3686 -88.8939 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Converse, South Carolina 34.9940 -81.8421 matched with DB +City: Converse, state: Texas, Lat: 29.5091, Lng: -98.3084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, Alabama 34.9147 -87.2716 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Alabama 34.9147 -87.2716 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Alabama 34.9147 -87.2716 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lehigh, Oklahoma 34.4707 -96.2208 matched with DB +City: Lehigh, state: Pennsylvania, Lat: 40.7678, Lng: -75.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Nebraska 42.6879 -103.8826 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Nebraska 42.6879 -103.8826 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Nebraska 42.6879 -103.8826 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Nebraska 42.6879 -103.8826 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Nebraska 42.6879 -103.8826 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Nebraska 42.6879 -103.8826 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fayetteville, Ohio 39.1854 -83.9319 matched with DB +City: Fayetteville, state: Arkansas, Lat: 36.0714, Lng: -94.1661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Ohio 39.1854 -83.9319 matched with DB +City: Fayetteville, state: North Carolina, Lat: 35.085, Lng: -78.9772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fayetteville, Ohio 39.1854 -83.9319 matched with DB +City: Fayetteville, state: Georgia, Lat: 33.4501, Lng: -84.471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Francis, Arkansas 36.4556 -90.1428 matched with DB +City: St. Francis, state: Wisconsin, Lat: 42.9716, Lng: -87.873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, South Dakota 45.3466 -97.7485 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, South Dakota 45.3466 -97.7485 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, South Dakota 45.3466 -97.7485 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, South Dakota 45.3466 -97.7485 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, South Dakota 45.3466 -97.7485 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mapleton, Kansas 38.0155 -94.8834 matched with DB +City: Mapleton, state: Utah, Lat: 40.1188, Lng: -111.5742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parkersburg, Illinois 38.5891 -88.0568 matched with DB +City: Parkersburg, state: West Virginia, Lat: 39.2623, Lng: -81.542, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hinsdale, Montana 48.4036 -107.0582 matched with DB +City: Hinsdale, state: Illinois, Lat: 41.8007, Lng: -87.9273, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Illinois 40.2556 -91.1836 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Illinois 40.2556 -91.1836 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Texas 32.0120 -96.2856 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Texas 32.0120 -96.2856 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Illinois 39.4587 -89.4079 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Illinois 39.4587 -89.4079 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Leland, Iowa 43.3319 -93.6351 matched with DB +City: Leland, state: North Carolina, Lat: 34.2042, Lng: -78.0279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Kentucky 38.2490 -85.5747 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Kentucky 38.2490 -85.5747 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey, Louisiana 31.4436 -91.7191 matched with DB +City: Monterey, state: California, Lat: 36.5919, Lng: -121.8808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, Arizona 33.8549 -112.6135 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, Arizona 33.8549 -112.6135 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Oregon 44.4947 -122.8242 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Oregon 44.4947 -122.8242 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Arkansas 33.2989 -91.4965 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, South Dakota 43.8996 -96.9277 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, South Dakota 43.8996 -96.9277 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Nebraska 40.5932 -96.3882 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Nebraska 40.5932 -96.3882 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Nebraska 40.5932 -96.3882 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, North Carolina 35.4702 -76.8119 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, North Carolina 35.4702 -76.8119 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, North Dakota 48.9619 -101.6328 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, North Dakota 48.9619 -101.6328 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Northport, Washington 48.9158 -117.7797 matched with DB +City: Northport, state: Alabama, Lat: 33.2586, Lng: -87.5993, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Mississippi 33.7460 -88.4095 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Mississippi 33.7460 -88.4095 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Mississippi 33.7460 -88.4095 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Mississippi 33.7460 -88.4095 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, North Carolina 36.4994 -81.5106 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, North Carolina 36.4994 -81.5106 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, North Carolina 36.4994 -81.5106 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, North Carolina 36.4994 -81.5106 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockport, Kentucky 37.3359 -86.9910 matched with DB +City: Rockport, state: Texas, Lat: 28.029, Lng: -97.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loganville, Wisconsin 43.4389 -90.0371 matched with DB +City: Loganville, state: Georgia, Lat: 33.8353, Lng: -83.8958, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Florida 27.7869 -80.4141 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Florida 27.7869 -80.4141 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Florida 27.7869 -80.4141 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Wyoming 42.0601 -109.4392 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buckingham, Illinois 41.0467 -88.1749 matched with DB +City: Buckingham, state: Pennsylvania, Lat: 40.3188, Lng: -75.058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, Pennsylvania 41.6143 -75.2872 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, Pennsylvania 41.6143 -75.2872 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winthrop, New York 44.8006 -74.8016 matched with DB +City: Winthrop, state: Massachusetts, Lat: 42.3761, Lng: -70.9846, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Omaha, Illinois 37.8901 -88.3053 matched with DB +City: Omaha, state: Nebraska, Lat: 41.2627, Lng: -96.0529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, Montana 46.7181 -111.7528 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Montana 46.7181 -111.7528 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, Montana 46.7181 -111.7528 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Utah 37.8013 -112.9350 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Utah 37.8013 -112.9350 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Utah 37.8013 -112.9350 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Germantown, Kentucky 38.6559 -83.9643 matched with DB +City: Germantown, state: Wisconsin, Lat: 43.2343, Lng: -88.1217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Kentucky 38.6559 -83.9643 matched with DB +City: Germantown, state: Maryland, Lat: 39.1755, Lng: -77.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Germantown, Kentucky 38.6559 -83.9643 matched with DB +City: Germantown, state: Tennessee, Lat: 35.0829, Lng: -89.7824, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batavia, Wisconsin 43.5934 -88.0480 matched with DB +City: Batavia, state: New York, Lat: 42.9987, Lng: -78.1802, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Batavia, Wisconsin 43.5934 -88.0480 matched with DB +City: Batavia, state: Illinois, Lat: 41.8479, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Pennsylvania 41.5585 -77.1054 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Pennsylvania 41.5585 -77.1054 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Delaware 38.8699 -75.5790 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Delaware 38.8699 -75.5790 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Delaware 38.8699 -75.5790 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Delaware 38.8699 -75.5790 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Delaware 38.8699 -75.5790 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Delaware 38.8699 -75.5790 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Menifee, Arkansas 35.1493 -92.5544 matched with DB +City: Menifee, state: California, Lat: 33.6909, Lng: -117.1849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, North Carolina 36.0128 -80.5329 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, North Carolina 36.0128 -80.5329 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, North Carolina 36.0128 -80.5329 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, North Carolina 36.0128 -80.5329 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, North Carolina 36.0128 -80.5329 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, North Carolina 36.0128 -80.5329 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Michigan 44.6842 -83.4133 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Michigan 44.6842 -83.4133 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Michigan 44.6842 -83.4133 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Michigan 44.6842 -83.4133 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Michigan 42.1047 -85.0776 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montague, Texas 33.6653 -97.7209 matched with DB +City: Montague, state: Massachusetts, Lat: 42.5549, Lng: -72.5177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cherry Creek, South Dakota 44.6048 -101.4996 matched with DB +City: Cherry Creek, state: Colorado, Lat: 39.6094, Lng: -104.8645, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Houston, Arkansas 35.0349 -92.6945 matched with DB +City: Houston, state: Texas, Lat: 29.786, Lng: -95.3885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Alabama 32.9861 -85.2912 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Pennsylvania 41.9070 -79.7465 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Pennsylvania 41.9070 -79.7465 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, West Virginia 37.7227 -81.8745 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Vermont 42.7976 -72.8192 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Vermont 42.7976 -72.8192 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Vermont 42.7976 -72.8192 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Vermont 42.7976 -72.8192 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Vermont 42.7976 -72.8192 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Vermont 42.7976 -72.8192 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Kansas 37.9805 -96.1638 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Kansas 37.9805 -96.1638 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Kansas 37.9805 -96.1638 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Kansas 37.9805 -96.1638 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ames, Oklahoma 36.2470 -98.1861 matched with DB +City: Ames, state: Iowa, Lat: 42.0256, Lng: -93.6217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Illinois 39.1660 -88.3781 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, West Virginia 38.8305 -82.1360 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, West Virginia 38.8305 -82.1360 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, West Virginia 38.8305 -82.1360 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, West Virginia 38.8305 -82.1360 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fillmore, Missouri 40.0253 -94.9727 matched with DB +City: Fillmore, state: California, Lat: 34.3989, Lng: -118.9174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pemberton, Minnesota 44.0085 -93.7837 matched with DB +City: Pemberton, state: New Jersey, Lat: 39.9562, Lng: -74.6, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bakersfield, Missouri 36.5238 -92.1442 matched with DB +City: Bakersfield, state: California, Lat: 35.3529, Lng: -119.0359, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnstown, Wyoming 43.1118 -108.6955 matched with DB +City: Johnstown, state: Pennsylvania, Lat: 40.326, Lng: -78.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnstown, Wyoming 43.1118 -108.6955 matched with DB +City: Johnstown, state: Colorado, Lat: 40.3499, Lng: -104.9482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grenada, California 41.6406 -122.5260 matched with DB +City: Grenada, state: Mississippi, Lat: 33.7816, Lng: -89.813, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Iowa 41.2844 -91.3392 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Georgia 32.3904 -81.9565 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Texas 33.3300 -96.6676 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Texas 33.3300 -96.6676 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Texas 33.3300 -96.6676 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakdale, Tennessee 35.9895 -84.5573 matched with DB +City: Oakdale, state: Minnesota, Lat: 44.9876, Lng: -92.9641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakdale, Tennessee 35.9895 -84.5573 matched with DB +City: Oakdale, state: California, Lat: 37.7618, Lng: -120.8468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: College Station, Arkansas 34.7057 -92.2297 matched with DB +City: College Station, state: Texas, Lat: 30.5852, Lng: -96.2959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Maryland 39.5393 -79.0082 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stanford, Montana 47.1521 -110.2190 matched with DB +City: Stanford, state: California, Lat: 37.4252, Lng: -122.1674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, New Mexico 35.4692 -108.4396 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, New Mexico 35.4692 -108.4396 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Nebraska 40.0101 -97.6181 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Nebraska 40.0101 -97.6181 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hazleton, Indiana 38.4893 -87.5406 matched with DB +City: Hazleton, state: Pennsylvania, Lat: 40.9505, Lng: -75.9725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dedham, Iowa 41.9084 -94.8233 matched with DB +City: Dedham, state: Massachusetts, Lat: 42.2467, Lng: -71.1777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Utah 40.0956 -112.4458 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Utah 40.0956 -112.4458 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Junction City, Missouri 37.5733 -90.2907 matched with DB +City: Junction City, state: Kansas, Lat: 39.0277, Lng: -96.8508, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsbury, Indiana 41.5302 -86.6972 matched with DB +City: Kingsbury, state: New York, Lat: 43.344, Lng: -73.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boston, Indiana 39.7412 -84.8517 matched with DB +City: Boston, state: Massachusetts, Lat: 42.3188, Lng: -71.0852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wellington, Illinois 40.5411 -87.6799 matched with DB +City: Wellington, state: Florida, Lat: 26.6461, Lng: -80.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wellington, Illinois 40.5411 -87.6799 matched with DB +City: Wellington, state: Colorado, Lat: 40.7, Lng: -105.0054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Iowa 41.7421 -90.7825 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Iowa 41.7421 -90.7825 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kensington, Minnesota 45.7780 -95.6971 matched with DB +City: Kensington, state: Connecticut, Lat: 41.6284, Lng: -72.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethlehem, Mississippi 34.5774 -89.3289 matched with DB +City: Bethlehem, state: Pennsylvania, Lat: 40.6266, Lng: -75.3679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethlehem, Mississippi 34.5774 -89.3289 matched with DB +City: Bethlehem, state: New York, Lat: 42.5856, Lng: -73.8219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. James, Michigan 45.7473 -85.5173 matched with DB +City: St. James, state: New York, Lat: 40.8761, Lng: -73.1521, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White City, Illinois 39.0716 -89.7637 matched with DB +City: White City, state: Oregon, Lat: 42.4316, Lng: -122.8322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scott, Ohio 40.9890 -84.5837 matched with DB +City: Scott, state: Pennsylvania, Lat: 40.3875, Lng: -80.0791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cincinnati, Iowa 40.6309 -92.9222 matched with DB +City: Cincinnati, state: Ohio, Lat: 39.1413, Lng: -84.506, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bedford, Wyoming 42.8947 -110.9286 matched with DB +City: Bedford, state: Ohio, Lat: 41.3919, Lng: -81.536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Wyoming 42.8947 -110.9286 matched with DB +City: Bedford, state: Indiana, Lat: 38.8602, Lng: -86.4895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Wyoming 42.8947 -110.9286 matched with DB +City: Bedford, state: Texas, Lat: 32.8464, Lng: -97.135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Wyoming 42.8947 -110.9286 matched with DB +City: Bedford, state: Massachusetts, Lat: 42.4969, Lng: -71.2783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Wyoming 42.8947 -110.9286 matched with DB +City: Bedford, state: New Hampshire, Lat: 42.9406, Lng: -71.5302, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bedford, Wyoming 42.8947 -110.9286 matched with DB +City: Bedford, state: New York, Lat: 41.225, Lng: -73.6673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edwardsville, Alabama 33.8409 -85.4523 matched with DB +City: Edwardsville, state: Illinois, Lat: 38.7922, Lng: -89.9874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garner, Arkansas 35.1421 -91.7805 matched with DB +City: Garner, state: North Carolina, Lat: 35.6936, Lng: -78.6181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryant, Illinois 40.4655 -90.0948 matched with DB +City: Bryant, state: Arkansas, Lat: 34.6152, Lng: -92.4914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Valley, North Dakota 47.2901 -102.0652 matched with DB +City: Golden Valley, state: Minnesota, Lat: 44.9901, Lng: -93.3591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Iowa 41.1399 -95.4302 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Iowa 41.1399 -95.4302 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Iowa 41.1399 -95.4302 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Iowa 41.1399 -95.4302 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macedonia, Iowa 41.1922 -95.4266 matched with DB +City: Macedonia, state: Ohio, Lat: 41.3147, Lng: -81.4989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Providence, Iowa 42.2813 -93.1716 matched with DB +City: New Providence, state: New Jersey, Lat: 40.6996, Lng: -74.4035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Castle, Virginia 37.5013 -80.1119 matched with DB +City: New Castle, state: Pennsylvania, Lat: 40.9956, Lng: -80.3458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Virginia 37.5013 -80.1119 matched with DB +City: New Castle, state: Indiana, Lat: 39.9191, Lng: -85.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Castle, Virginia 37.5013 -80.1119 matched with DB +City: New Castle, state: New York, Lat: 41.1841, Lng: -73.7721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, Ohio 40.2696 -82.3543 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Wisconsin 44.9586 -92.1705 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Illinois 41.1141 -89.1958 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Lake, Indiana 39.7767 -85.8536 matched with DB +City: Spring Lake, state: North Carolina, Lat: 35.1843, Lng: -78.9962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Ohio 40.8873 -81.2300 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Ohio 40.8873 -81.2300 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniondale, Indiana 40.8299 -85.2415 matched with DB +City: Uniondale, state: New York, Lat: 40.7176, Lng: -73.5947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleburg, North Carolina 36.3990 -78.3235 matched with DB +City: Middleburg, state: Florida, Lat: 30.0502, Lng: -81.9011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Wisconsin 43.6562 -89.2069 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Kentucky 37.0467 -86.2506 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Kentucky 37.0467 -86.2506 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Kentucky 37.0467 -86.2506 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cypress, Illinois 37.3655 -89.0187 matched with DB +City: Cypress, state: California, Lat: 33.8171, Lng: -118.0386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, Michigan 43.3828 -84.8392 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Michigan 43.3828 -84.8392 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, Michigan 43.3828 -84.8392 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Kansas 38.0630 -94.6929 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little River, California 39.2702 -123.7818 matched with DB +City: Little River, state: South Carolina, Lat: 33.8786, Lng: -78.6393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennedy, New York 42.1590 -79.0982 matched with DB +City: Kennedy, state: Pennsylvania, Lat: 40.4768, Lng: -80.1028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gantt, Alabama 31.4092 -86.4842 matched with DB +City: Gantt, state: South Carolina, Lat: 34.7837, Lng: -82.4027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, Indiana 40.0792 -85.3905 matched with DB +City: Oakville, state: Connecticut, Lat: 41.5893, Lng: -73.0905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakville, Indiana 40.0792 -85.3905 matched with DB +City: Oakville, state: Missouri, Lat: 38.4479, Lng: -90.3199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Arkansas 36.4020 -94.5889 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Callaway, Minnesota 46.9820 -95.9120 matched with DB +City: Callaway, state: Florida, Lat: 30.1349, Lng: -85.5568, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shelbyville, Texas 31.7594 -94.0772 matched with DB +City: Shelbyville, state: Indiana, Lat: 39.5352, Lng: -85.7793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Texas 31.7594 -94.0772 matched with DB +City: Shelbyville, state: Kentucky, Lat: 38.2067, Lng: -85.2292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shelbyville, Texas 31.7594 -94.0772 matched with DB +City: Shelbyville, state: Tennessee, Lat: 35.4987, Lng: -86.4517, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Kansas 39.5996 -97.8613 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Kansas 39.5996 -97.8613 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Oklahoma 36.6098 -95.2762 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Oklahoma 36.6098 -95.2762 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, Arkansas 34.8194 -91.4101 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stillwater, Pennsylvania 41.1506 -76.3693 matched with DB +City: Stillwater, state: New York, Lat: 42.9701, Lng: -73.6885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stillwater, Pennsylvania 41.1506 -76.3693 matched with DB +City: Stillwater, state: Minnesota, Lat: 45.0573, Lng: -92.8313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stillwater, Pennsylvania 41.1506 -76.3693 matched with DB +City: Stillwater, state: Oklahoma, Lat: 36.1317, Lng: -97.0742, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Minnesota 44.0485 -94.1712 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Minnesota 44.0485 -94.1712 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Minnesota 44.0485 -94.1712 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Minnesota 44.0485 -94.1712 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Minnesota 44.0485 -94.1712 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Minnesota 44.0485 -94.1712 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Washington 46.0228 -121.2925 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Nebraska 40.2902 -98.2596 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Nebraska 40.2902 -98.2596 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Nebraska 40.2902 -98.2596 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Nebraska 40.2902 -98.2596 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chili, New Mexico 36.1027 -106.1529 matched with DB +City: Chili, state: New York, Lat: 43.0845, Lng: -77.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Presa, Texas 27.3995 -99.4374 matched with DB +City: La Presa, state: California, Lat: 32.711, Lng: -117.0027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lunenburg, Virginia 36.9585 -78.2683 matched with DB +City: Lunenburg, state: Massachusetts, Lat: 42.5897, Lng: -71.7199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Wyoming 41.7595 -108.9643 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Wyoming 41.7595 -108.9643 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Colorado 37.6877 -106.5860 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Colorado 37.6877 -106.5860 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynn, Arkansas 36.0042 -91.2521 matched with DB +City: Lynn, state: Massachusetts, Lat: 42.4781, Lng: -70.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartow, Georgia 32.8816 -82.4712 matched with DB +City: Bartow, state: Florida, Lat: 27.8868, Lng: -81.8214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grande, Washington 46.8199 -122.2962 matched with DB +City: La Grande, state: Oregon, Lat: 45.3242, Lng: -118.0865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Cruz, New Mexico 35.9939 -106.0359 matched with DB +City: Santa Cruz, state: California, Lat: 36.9789, Lng: -122.0346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Ohio 40.1737 -83.5279 matched with DB +City: Woodstock, state: Illinois, Lat: 42.3096, Lng: -88.4353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodstock, Ohio 40.1737 -83.5279 matched with DB +City: Woodstock, state: Georgia, Lat: 34.1026, Lng: -84.5091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bonita, Louisiana 32.9206 -91.6751 matched with DB +City: Bonita, state: California, Lat: 32.6651, Lng: -117.0296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frederick, South Dakota 45.8319 -98.5067 matched with DB +City: Frederick, state: Maryland, Lat: 39.4337, Lng: -77.4141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frederick, South Dakota 45.8319 -98.5067 matched with DB +City: Frederick, state: Colorado, Lat: 40.1088, Lng: -104.9701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, North Carolina 35.5414 -77.8763 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, North Carolina 35.5414 -77.8763 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roswell, Ohio 40.4759 -81.3480 matched with DB +City: Roswell, state: Georgia, Lat: 34.0391, Lng: -84.3513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roswell, Ohio 40.4759 -81.3480 matched with DB +City: Roswell, state: New Mexico, Lat: 33.373, Lng: -104.5294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorktown, Virginia 37.2352 -76.5146 matched with DB +City: Yorktown, state: Indiana, Lat: 40.183, Lng: -85.5123, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Yorktown, Virginia 37.2352 -76.5146 matched with DB +City: Yorktown, state: New York, Lat: 41.2727, Lng: -73.8092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Wisconsin 45.1887 -92.3879 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Wisconsin 45.1887 -92.3879 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. John, North Dakota 48.9437 -99.7132 matched with DB +City: St. John, state: Indiana, Lat: 41.4429, Lng: -87.4697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayward, Minnesota 43.6499 -93.2460 matched with DB +City: Hayward, state: California, Lat: 37.6328, Lng: -122.0766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Louisiana 30.9682 -91.1125 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Louisiana 30.9682 -91.1125 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Louisiana 30.1805 -92.5014 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Louisiana 30.1805 -92.5014 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Louisiana 30.1805 -92.5014 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, Illinois 40.1905 -90.1425 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, Illinois 40.1905 -90.1425 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, New Jersey 39.8009 -75.3468 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, New Jersey 39.8009 -75.3468 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Illinois 39.5646 -90.6499 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Illinois 39.5646 -90.6499 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Illinois 39.5646 -90.6499 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Illinois 39.5646 -90.6499 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Illinois 39.5646 -90.6499 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Illinois 39.5646 -90.6499 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, Iowa 43.3307 -93.0687 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, Iowa 43.3307 -93.0687 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshall, Alaska 61.8753 -162.0487 matched with DB +City: Marshall, state: Minnesota, Lat: 44.4488, Lng: -95.7897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Alaska 61.8753 -162.0487 matched with DB +City: Marshall, state: Missouri, Lat: 39.1147, Lng: -93.201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Alaska 61.8753 -162.0487 matched with DB +City: Marshall, state: Texas, Lat: 32.537, Lng: -94.3515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshall, Alaska 61.8753 -162.0487 matched with DB +City: Marshall, state: Pennsylvania, Lat: 40.6453, Lng: -80.11, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macedonia, Alabama 33.4031 -88.2392 matched with DB +City: Macedonia, state: Ohio, Lat: 41.3147, Lng: -81.4989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longview, Mississippi 33.4027 -88.9256 matched with DB +City: Longview, state: Washington, Lat: 46.1461, Lng: -122.963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Longview, Mississippi 33.4027 -88.9256 matched with DB +City: Longview, state: Texas, Lat: 32.5193, Lng: -94.7622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boston, Kentucky 37.7837 -85.6804 matched with DB +City: Boston, state: Massachusetts, Lat: 42.3188, Lng: -71.0852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Minnesota 45.1959 -94.3110 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Minnesota 45.1959 -94.3110 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Minnesota 45.1959 -94.3110 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Montana 47.4893 -112.3923 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Montana 47.4893 -112.3923 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Montana 47.4893 -112.3923 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocoee, Tennessee 35.1235 -84.7167 matched with DB +City: Ocoee, state: Florida, Lat: 28.5796, Lng: -81.5332, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Texas 31.8673 -101.4863 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Texas 31.8673 -101.4863 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Texas 31.8673 -101.4863 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Texas 31.8673 -101.4863 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Texas 31.8673 -101.4863 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Texas 31.8673 -101.4863 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Londonderry, Vermont 43.1904 -72.8118 matched with DB +City: South Londonderry, state: Pennsylvania, Lat: 40.2424, Lng: -76.5432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneseo, Kansas 38.5170 -98.1545 matched with DB +City: Geneseo, state: New York, Lat: 42.8038, Lng: -77.7783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dennis, Oklahoma 36.5433 -94.8693 matched with DB +City: Dennis, state: Massachusetts, Lat: 41.7064, Lng: -70.1644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fountain, Michigan 44.0484 -86.1810 matched with DB +City: Fountain, state: Colorado, Lat: 38.6886, Lng: -104.6829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henrietta, Pennsylvania 40.2625 -78.2977 matched with DB +City: Henrietta, state: New York, Lat: 43.0555, Lng: -77.6413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Michigan 41.9581 -84.7680 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elko, South Carolina 33.3808 -81.3805 matched with DB +City: Elko, state: Nevada, Lat: 40.8381, Lng: -115.7678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fenton, Louisiana 30.3643 -92.9169 matched with DB +City: Fenton, state: Michigan, Lat: 42.7994, Lng: -83.7144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Illinois 40.6589 -89.8031 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Illinois 40.6589 -89.8031 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Kentucky 37.6119 -82.7291 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Madison, Maryland 38.5163 -76.2182 matched with DB +City: Madison, state: Wisconsin, Lat: 43.0822, Lng: -89.393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Maryland 38.5163 -76.2182 matched with DB +City: Madison, state: New Jersey, Lat: 40.7586, Lng: -74.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Maryland 38.5163 -76.2182 matched with DB +City: Madison, state: Indiana, Lat: 38.7581, Lng: -85.3973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Maryland 38.5163 -76.2182 matched with DB +City: Madison, state: Alabama, Lat: 34.7114, Lng: -86.7626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Madison, Maryland 38.5163 -76.2182 matched with DB +City: Madison, state: Mississippi, Lat: 32.4738, Lng: -90.13, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delavan, Minnesota 43.7677 -94.0174 matched with DB +City: Delavan, state: Wisconsin, Lat: 42.6282, Lng: -88.6323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden, Mississippi 34.4866 -88.1863 matched with DB +City: Golden, state: Colorado, Lat: 39.7406, Lng: -105.2118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Oklahoma 33.9737 -96.9177 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Louisiana 31.7597 -92.3821 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Louisiana 31.7597 -92.3821 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Louisiana 31.7597 -92.3821 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Pennsylvania 40.6417 -80.4994 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Pennsylvania 40.6417 -80.4994 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Pennsylvania 40.6417 -80.4994 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Mississippi 32.9837 -90.3240 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Goldsboro, Maryland 39.0316 -75.7821 matched with DB +City: Goldsboro, state: North Carolina, Lat: 35.3778, Lng: -77.9717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, South Dakota 43.4865 -97.2166 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fallston, Pennsylvania 40.7240 -80.3133 matched with DB +City: Fallston, state: Maryland, Lat: 39.5332, Lng: -76.4452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moore, Idaho 43.7344 -113.3675 matched with DB +City: Moore, state: Oklahoma, Lat: 35.3293, Lng: -97.4757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Moore, Idaho 43.7344 -113.3675 matched with DB +City: Moore, state: Pennsylvania, Lat: 40.7798, Lng: -75.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spokane, Missouri 36.8669 -93.2870 matched with DB +City: Spokane, state: Washington, Lat: 47.6671, Lng: -117.433, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portage, Utah 41.9756 -112.2405 matched with DB +City: Portage, state: Wisconsin, Lat: 43.5489, Lng: -89.4658, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Utah 41.9756 -112.2405 matched with DB +City: Portage, state: Michigan, Lat: 42.2, Lng: -85.5906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portage, Utah 41.9756 -112.2405 matched with DB +City: Portage, state: Indiana, Lat: 41.5856, Lng: -87.1797, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lima, Montana 44.6384 -112.5917 matched with DB +City: Lima, state: Ohio, Lat: 40.741, Lng: -84.112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, New Jersey 40.9260 -75.0945 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, New Jersey 40.9260 -75.0945 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, New Jersey 40.9260 -75.0945 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, New Jersey 40.9260 -75.0945 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, New Jersey 40.9260 -75.0945 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, New Jersey 40.9260 -75.0945 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchellville, Arkansas 33.9051 -91.4984 matched with DB +City: Mitchellville, state: Maryland, Lat: 38.9358, Lng: -76.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Arkansas 33.6126 -93.8138 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Arkansas 33.6126 -93.8138 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden Grove, Iowa 40.8266 -93.6068 matched with DB +City: Garden Grove, state: California, Lat: 33.7787, Lng: -117.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentor, Kentucky 38.8900 -84.2481 matched with DB +City: Mentor, state: Ohio, Lat: 41.6893, Lng: -81.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest City, Missouri 39.9829 -95.1883 matched with DB +City: Forest City, state: Florida, Lat: 28.6619, Lng: -81.4444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Kansas 38.4874 -95.2698 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Kansas 38.4874 -95.2698 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Kansas 38.4874 -95.2698 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Pennsylvania 39.9745 -80.0440 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Pennsylvania 39.9745 -80.0440 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Pennsylvania 39.9745 -80.0440 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, Indiana 39.5884 -85.7587 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 39.5884 -85.7587 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 39.5884 -85.7587 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 39.5884 -85.7587 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, Indiana 39.5884 -85.7587 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palestine, Ohio 40.0501 -84.7443 matched with DB +City: Palestine, state: Texas, Lat: 31.7544, Lng: -95.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tustin, Michigan 44.1009 -85.4589 matched with DB +City: Tustin, state: California, Lat: 33.7311, Lng: -117.8107, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, New York 43.1630 -76.5382 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, New York 43.1630 -76.5382 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cedar Grove, Indiana 39.3560 -84.9372 matched with DB +City: Cedar Grove, state: New Jersey, Lat: 40.8565, Lng: -74.2288, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Nebraska 41.3976 -96.2074 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newtown, Missouri 40.3762 -93.3336 matched with DB +City: Newtown, state: Pennsylvania, Lat: 39.992, Lng: -75.4106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, Kentucky 38.4875 -85.4753 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutland, Illinois 40.9838 -89.0413 matched with DB +City: Rutland, state: Vermont, Lat: 43.6092, Lng: -72.9783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rutland, Illinois 40.9838 -89.0413 matched with DB +City: Rutland, state: Massachusetts, Lat: 42.3848, Lng: -71.9673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milwaukee, North Carolina 36.4047 -77.2306 matched with DB +City: Milwaukee, state: Wisconsin, Lat: 43.0642, Lng: -87.9675, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hull, Georgia 34.0155 -83.2938 matched with DB +City: Hull, state: Massachusetts, Lat: 42.2861, Lng: -70.8835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Iona, Minnesota 43.9148 -95.7857 matched with DB +City: Iona, state: Florida, Lat: 26.516, Lng: -81.9601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Georgia 32.6496 -82.0962 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carney, Michigan 45.5935 -87.5547 matched with DB +City: Carney, state: Maryland, Lat: 39.405, Lng: -76.5235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Doylestown, Wisconsin 43.4276 -89.1457 matched with DB +City: Doylestown, state: Pennsylvania, Lat: 40.2962, Lng: -75.1393, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Michigan 41.8649 -84.2347 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Michigan 41.8649 -84.2347 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Michigan 41.8649 -84.2347 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Michigan 41.8649 -84.2347 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Michigan 41.8649 -84.2347 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, Oregon 43.4109 -123.2194 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Oregon 43.4109 -123.2194 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Oregon 43.4109 -123.2194 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allentown, Georgia 32.5855 -83.2273 matched with DB +City: Allentown, state: Pennsylvania, Lat: 40.5961, Lng: -75.4756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forest City, Illinois 40.3723 -89.8325 matched with DB +City: Forest City, state: Florida, Lat: 28.6619, Lng: -81.4444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marathon, Iowa 42.8602 -94.9829 matched with DB +City: Marathon, state: Florida, Lat: 24.7263, Lng: -81.0374, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Latham, Kansas 37.5357 -96.6427 matched with DB +City: Latham, state: New York, Lat: 42.7427, Lng: -73.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clark, Missouri 39.2760 -92.3474 matched with DB +City: Clark, state: New Jersey, Lat: 40.6203, Lng: -74.3134, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendon, Missouri 39.5907 -93.1337 matched with DB +City: Mendon, state: New York, Lat: 42.9859, Lng: -77.5479, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandy Hook, Maryland 39.3284 -77.7052 matched with DB +City: Sandy Hook, state: Connecticut, Lat: 41.4128, Lng: -73.244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheeling, Missouri 39.7862 -93.3860 matched with DB +City: Wheeling, state: West Virginia, Lat: 40.0752, Lng: -80.6951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheeling, Missouri 39.7862 -93.3860 matched with DB +City: Wheeling, state: Illinois, Lat: 42.1308, Lng: -87.924, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loma Linda, Texas 28.0070 -97.4994 matched with DB +City: Loma Linda, state: California, Lat: 34.045, Lng: -117.2498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westford, Vermont 44.6079 -73.0113 matched with DB +City: Westford, state: Massachusetts, Lat: 42.5864, Lng: -71.4401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monmouth, California 36.5656 -119.7405 matched with DB +City: Monmouth, state: Illinois, Lat: 40.914, Lng: -90.6425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monmouth, California 36.5656 -119.7405 matched with DB +City: Monmouth, state: Oregon, Lat: 44.8505, Lng: -123.2284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rye, Colorado 37.9212 -104.9322 matched with DB +City: Rye, state: New York, Lat: 41.0075, Lng: -73.6872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Michigan 44.3325 -85.2969 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Michigan 44.3325 -85.2969 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesterfield, Illinois 39.2566 -90.0668 matched with DB +City: Chesterfield, state: Missouri, Lat: 38.6589, Lng: -90.5803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chesterfield, Illinois 39.2566 -90.0668 matched with DB +City: Chesterfield, state: New Jersey, Lat: 40.1166, Lng: -74.6459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Illinois 41.4716 -89.2478 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Illinois 41.4716 -89.2478 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Illinois 41.4716 -89.2478 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Illinois 41.4716 -89.2478 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Illinois 41.4716 -89.2478 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Girard, Georgia 33.0400 -81.7122 matched with DB +City: Girard, state: Ohio, Lat: 41.1665, Lng: -80.6963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, Oregon 44.5703 -120.1537 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, Iowa 41.0977 -91.0436 matched with DB +City: Oakville, state: Connecticut, Lat: 41.5893, Lng: -73.0905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakville, Iowa 41.0977 -91.0436 matched with DB +City: Oakville, state: Missouri, Lat: 38.4479, Lng: -90.3199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Missouri 39.7456 -93.6286 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tracy, Missouri 39.3797 -94.7921 matched with DB +City: Tracy, state: California, Lat: 37.7269, Lng: -121.4523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newtown, Pennsylvania 40.6529 -76.3461 matched with DB +City: Newtown, state: Pennsylvania, Lat: 39.992, Lng: -75.4106, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Walnut, Kansas 37.6018 -95.0743 matched with DB +City: Walnut, state: California, Lat: 34.0334, Lng: -117.8593, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mound, Texas 31.3505 -97.6432 matched with DB +City: Mound, state: Minnesota, Lat: 44.9328, Lng: -93.6591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawrence, Illinois 42.4434 -88.6417 matched with DB +City: Lawrence, state: Massachusetts, Lat: 42.7002, Lng: -71.1626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Illinois 42.4434 -88.6417 matched with DB +City: Lawrence, state: Kansas, Lat: 38.9597, Lng: -95.2642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Illinois 42.4434 -88.6417 matched with DB +City: Lawrence, state: Indiana, Lat: 39.8674, Lng: -85.9904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lawrence, Illinois 42.4434 -88.6417 matched with DB +City: Lawrence, state: New Jersey, Lat: 40.2954, Lng: -74.7205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver City, Mississippi 33.0951 -90.4968 matched with DB +City: Silver City, state: New Mexico, Lat: 32.7783, Lng: -108.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edison, Washington 48.5640 -122.4348 matched with DB +City: Edison, state: New Jersey, Lat: 40.536, Lng: -74.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Napoleon, Missouri 39.1293 -94.0857 matched with DB +City: Napoleon, state: Ohio, Lat: 41.3977, Lng: -84.1244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Phillipsburg, Missouri 37.5525 -92.7871 matched with DB +City: Phillipsburg, state: New Jersey, Lat: 40.6894, Lng: -75.1821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Oregon 44.7682 -117.1669 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Oregon 44.7682 -117.1669 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Oregon 44.7682 -117.1669 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Oregon 44.7682 -117.1669 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Louisiana 29.8111 -91.6703 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockford, Idaho 43.1892 -112.5306 matched with DB +City: Rockford, state: Illinois, Lat: 42.2596, Lng: -89.064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Damascus, Ohio 40.9042 -80.9523 matched with DB +City: Damascus, state: Maryland, Lat: 39.2701, Lng: -77.1957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Damascus, Ohio 40.9042 -80.9523 matched with DB +City: Damascus, state: Oregon, Lat: 45.4233, Lng: -122.4436, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blue Springs, Nebraska 40.1375 -96.6631 matched with DB +City: Blue Springs, state: Missouri, Lat: 39.0124, Lng: -94.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerfield, Ohio 39.7969 -81.3355 matched with DB +City: Summerfield, state: North Carolina, Lat: 36.1973, Lng: -79.8997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summerfield, Ohio 39.7969 -81.3355 matched with DB +City: Summerfield, state: Maryland, Lat: 38.9042, Lng: -76.8678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center, Nebraska 42.6090 -97.8761 matched with DB +City: Center, state: Pennsylvania, Lat: 40.6483, Lng: -80.2977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Three Lakes, Michigan 46.5410 -88.1933 matched with DB +City: Three Lakes, state: Florida, Lat: 25.6415, Lng: -80.4, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norton, West Virginia 38.9316 -79.9692 matched with DB +City: Norton, state: Ohio, Lat: 41.0294, Lng: -81.6461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norton, West Virginia 38.9316 -79.9692 matched with DB +City: Norton, state: Massachusetts, Lat: 41.964, Lng: -71.1842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belmont, Louisiana 31.7182 -93.5082 matched with DB +City: Belmont, state: North Carolina, Lat: 35.2212, Lng: -81.0401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Louisiana 31.7182 -93.5082 matched with DB +City: Belmont, state: California, Lat: 37.5154, Lng: -122.2953, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Louisiana 31.7182 -93.5082 matched with DB +City: Belmont, state: Virginia, Lat: 39.0622, Lng: -77.4985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Belmont, Louisiana 31.7182 -93.5082 matched with DB +City: Belmont, state: Massachusetts, Lat: 42.396, Lng: -71.1795, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, Oregon 43.7408 -117.0709 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Minnesota 43.6440 -96.0753 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beech Grove, Kentucky 37.6183 -87.3921 matched with DB +City: Beech Grove, state: Indiana, Lat: 39.7157, Lng: -86.0871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laurel, Iowa 41.8840 -92.9223 matched with DB +City: Laurel, state: Maryland, Lat: 39.0949, Lng: -76.8622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Iowa 41.8840 -92.9223 matched with DB +City: Laurel, state: Virginia, Lat: 37.6375, Lng: -77.5062, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Iowa 41.8840 -92.9223 matched with DB +City: Laurel, state: Florida, Lat: 27.1507, Lng: -82.4534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Laurel, Iowa 41.8840 -92.9223 matched with DB +City: Laurel, state: Mississippi, Lat: 31.6956, Lng: -89.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Penfield, Illinois 40.3047 -87.9443 matched with DB +City: Penfield, state: New York, Lat: 43.1602, Lng: -77.4483, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warwick, Oklahoma 35.6881 -97.0018 matched with DB +City: Warwick, state: Rhode Island, Lat: 41.7062, Lng: -71.4334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Oklahoma 35.6881 -97.0018 matched with DB +City: Warwick, state: New York, Lat: 41.2597, Lng: -74.3614, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Oklahoma 35.6881 -97.0018 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.1558, Lng: -76.2799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, Oklahoma 35.6881 -97.0018 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.2503, Lng: -75.0818, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vermilion, Illinois 39.5803 -87.5880 matched with DB +City: Vermilion, state: Ohio, Lat: 41.4103, Lng: -82.3214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Nebraska 41.1185 -98.8311 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Iowa 42.6194 -91.7295 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Iowa 42.6194 -91.7295 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Iowa 42.6194 -91.7295 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Iowa 42.6194 -91.7295 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Missouri 38.0712 -94.0804 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granger, Wyoming 41.5979 -109.9652 matched with DB +City: Granger, state: Indiana, Lat: 41.7374, Lng: -86.1348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calhoun, Louisiana 32.5153 -92.3539 matched with DB +City: Calhoun, state: Georgia, Lat: 34.491, Lng: -84.9386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Alabama 31.6675 -86.1730 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, California 38.3183 -122.8502 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, Illinois 39.9270 -87.7402 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, Illinois 39.9270 -87.7402 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverview, Alabama 31.0587 -87.0709 matched with DB +City: Riverview, state: Michigan, Lat: 42.1723, Lng: -83.1946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverview, Alabama 31.0587 -87.0709 matched with DB +City: Riverview, state: Florida, Lat: 27.8227, Lng: -82.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Groveland, Indiana 39.7606 -86.7200 matched with DB +City: Groveland, state: Florida, Lat: 28.6098, Lng: -81.8246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Illinois 39.2328 -90.7152 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: New York, Lat: 41.4459, Lng: -74.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.201, Lng: -76.7289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Ohio, Lat: 39.5033, Lng: -84.3659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Connecticut, Lat: 41.5476, Lng: -72.6549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Delaware, Lat: 39.445, Lng: -75.7183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Kentucky, Lat: 38.241, Lng: -85.5214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Rhode Island, Lat: 41.5175, Lng: -71.2769, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: New Jersey, Lat: 40.3892, Lng: -74.082, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Pennsylvania, Lat: 39.9094, Lng: -75.4311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Middletown, Missouri 39.1286 -91.4139 matched with DB +City: Middletown, state: Pennsylvania, Lat: 40.179, Lng: -74.9059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ravenna, Texas 33.6705 -96.2409 matched with DB +City: Ravenna, state: Ohio, Lat: 41.1612, Lng: -81.2422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Louisville, Kansas 39.2499 -96.3145 matched with DB +City: Louisville, state: Ohio, Lat: 40.837, Lng: -81.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Kansas 39.2499 -96.3145 matched with DB +City: Louisville, state: Colorado, Lat: 39.971, Lng: -105.1441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Louisville, Kansas 39.2499 -96.3145 matched with DB +City: Louisville, state: Kentucky, Lat: 38.1663, Lng: -85.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Kentucky 37.9320 -85.3839 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Kentucky 37.9320 -85.3839 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Kentucky 37.9320 -85.3839 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Kentucky 37.9320 -85.3839 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lehigh, Kansas 38.3744 -97.3024 matched with DB +City: Lehigh, state: Pennsylvania, Lat: 40.7678, Lng: -75.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Alabama 33.0029 -86.1990 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Alabama 33.0029 -86.1990 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Alabama 33.0029 -86.1990 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Alabama 33.0029 -86.1990 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Alabama 33.0029 -86.1990 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Alabama 33.0029 -86.1990 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edinburg, North Dakota 48.4955 -97.8629 matched with DB +City: Edinburg, state: Texas, Lat: 26.3196, Lng: -98.1597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, South Carolina 33.9462 -80.0208 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, South Carolina 33.9462 -80.0208 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, South Carolina 33.9462 -80.0208 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crowley, Colorado 38.1935 -103.8597 matched with DB +City: Crowley, state: Louisiana, Lat: 30.2175, Lng: -92.3752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Crowley, Colorado 38.1935 -103.8597 matched with DB +City: Crowley, state: Texas, Lat: 32.5781, Lng: -97.3585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stamford, Nebraska 40.1313 -99.5945 matched with DB +City: Stamford, state: Connecticut, Lat: 41.1039, Lng: -73.5585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Malden, Washington 47.2296 -117.4731 matched with DB +City: Malden, state: Massachusetts, Lat: 42.4305, Lng: -71.0576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Defiance, Iowa 41.8253 -95.3403 matched with DB +City: Defiance, state: Ohio, Lat: 41.2813, Lng: -84.3657, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockland, Michigan 46.7394 -89.1795 matched with DB +City: Rockland, state: Massachusetts, Lat: 42.1295, Lng: -70.91, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Venice, Louisiana 29.2875 -89.3637 matched with DB +City: Venice, state: Florida, Lat: 27.1184, Lng: -82.4137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Endicott, Nebraska 40.0814 -97.0954 matched with DB +City: Endicott, state: New York, Lat: 42.098, Lng: -76.0639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Overland, Nebraska 41.0809 -97.9783 matched with DB +City: Overland, state: Missouri, Lat: 38.6966, Lng: -90.3689, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, Missouri 37.7649 -90.7722 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Pennsylvania 41.0156 -79.7433 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield, Vermont 44.5996 -72.1160 matched with DB +City: Sheffield, state: Alabama, Lat: 34.757, Lng: -87.6977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waltham, Minnesota 43.8193 -92.8746 matched with DB +City: Waltham, state: Massachusetts, Lat: 42.3889, Lng: -71.2423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Millville, Indiana 39.9248 -85.2519 matched with DB +City: Millville, state: New Jersey, Lat: 39.3903, Lng: -75.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tulare, South Dakota 44.7382 -98.5089 matched with DB +City: Tulare, state: California, Lat: 36.1995, Lng: -119.34, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Idaho 42.1908 -111.4042 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Idaho 42.1908 -111.4042 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Idaho 42.1908 -111.4042 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Idaho 42.1908 -111.4042 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake Arrowhead, Missouri 39.4837 -94.3166 matched with DB +City: Lake Arrowhead, state: California, Lat: 34.2531, Lng: -117.1944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sulphur Springs, Ohio 40.8723 -82.8766 matched with DB +City: Sulphur Springs, state: Texas, Lat: 33.1421, Lng: -95.6122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestview, New Mexico 35.4878 -108.8574 matched with DB +City: Crestview, state: Florida, Lat: 30.7477, Lng: -86.5785, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, Washington 45.7476 -120.2161 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Kansas 37.3249 -101.2069 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cameron, Louisiana 29.7870 -93.2925 matched with DB +City: Cameron, state: Missouri, Lat: 39.7444, Lng: -94.2329, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belgrade, Nebraska 41.4709 -98.0678 matched with DB +City: Belgrade, state: Montana, Lat: 45.7789, Lng: -111.1736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Kansas 38.6597 -94.8569 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Indiana 39.3825 -85.5600 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Falls, Wisconsin 44.7209 -91.6917 matched with DB +City: Rock Falls, state: Illinois, Lat: 41.7724, Lng: -89.6928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robinson, Kansas 39.8157 -95.4117 matched with DB +City: Robinson, state: Texas, Lat: 31.4501, Lng: -97.1201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Robinson, Kansas 39.8157 -95.4117 matched with DB +City: Robinson, state: Pennsylvania, Lat: 40.4578, Lng: -80.1334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Indiana 40.6156 -86.2100 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Indiana 40.6156 -86.2100 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Indiana 40.6156 -86.2100 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Indiana 40.6156 -86.2100 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bentonville, Ohio 38.7455 -83.6103 matched with DB +City: Bentonville, state: Arkansas, Lat: 36.3547, Lng: -94.2305, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galt, Missouri 40.1272 -93.3880 matched with DB +City: Galt, state: California, Lat: 38.2698, Lng: -121.3004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ross, North Dakota 48.3128 -102.5435 matched with DB +City: Ross, state: Pennsylvania, Lat: 40.5256, Lng: -80.0243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Texas 29.5023 -96.6761 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Missouri 39.0111 -92.7550 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Kentucky 36.7596 -89.1020 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kentucky 36.7596 -89.1020 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kentucky 36.7596 -89.1020 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kentucky 36.7596 -89.1020 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Kentucky 36.7596 -89.1020 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Tennessee 35.5195 -89.8825 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Tennessee 35.5195 -89.8825 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Wyoming 44.7777 -108.6542 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaverton, Alabama 33.9354 -88.0218 matched with DB +City: Beaverton, state: Oregon, Lat: 45.4779, Lng: -122.8168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Minnesota 43.9772 -91.9494 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: De Witt, Illinois 40.1847 -88.7853 matched with DB +City: De Witt, state: New York, Lat: 43.0501, Lng: -76.071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: De Witt, Illinois 40.1847 -88.7853 matched with DB +City: De Witt, state: New York, Lat: 43.03, Lng: -76.0819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winona, Kansas 39.0618 -101.2449 matched with DB +City: Winona, state: Minnesota, Lat: 44.0505, Lng: -91.6684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, West Virginia 38.1384 -80.2107 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dudley, Pennsylvania 40.2053 -78.1783 matched with DB +City: Dudley, state: Massachusetts, Lat: 42.055, Lng: -71.9352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, West Virginia 39.3370 -78.9223 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Red Hill, Pennsylvania 40.5296 -78.4356 matched with DB +City: Red Hill, state: South Carolina, Lat: 33.7777, Lng: -79.0111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, Kentucky 38.3864 -85.2566 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Kentucky 38.3864 -85.2566 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Kentucky 38.3864 -85.2566 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Kentucky 38.3864 -85.2566 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, North Dakota 46.9018 -102.4222 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, North Dakota 46.9018 -102.4222 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Georgia 32.6060 -83.2460 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Georgia 32.6060 -83.2460 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Georgia 32.6060 -83.2460 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Georgia 32.6060 -83.2460 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Georgia 32.6060 -83.2460 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morgan City, Mississippi 33.3787 -90.3461 matched with DB +City: Morgan City, state: Louisiana, Lat: 29.7041, Lng: -91.192, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waco, Missouri 37.2470 -94.6003 matched with DB +City: Waco, state: Texas, Lat: 31.5599, Lng: -97.1882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Illinois 39.5423 -90.3303 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Illinois 39.5423 -90.3303 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Illinois 39.5423 -90.3303 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Illinois 39.5423 -90.3303 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Illinois 39.5423 -90.3303 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Illinois 39.5423 -90.3303 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rye, Arkansas 33.7505 -91.9985 matched with DB +City: Rye, state: New York, Lat: 41.0075, Lng: -73.6872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wendell, Minnesota 46.0359 -96.1008 matched with DB +City: Wendell, state: North Carolina, Lat: 35.7819, Lng: -78.3952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Matthews, Georgia 33.2176 -82.3079 matched with DB +City: Matthews, state: North Carolina, Lat: 35.1195, Lng: -80.7101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troutdale, Virginia 36.7022 -81.4413 matched with DB +City: Troutdale, state: Oregon, Lat: 45.5372, Lng: -122.3955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainfield, Ohio 40.2051 -81.7181 matched with DB +City: Plainfield, state: New Jersey, Lat: 40.6154, Lng: -74.4157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Ohio 40.2051 -81.7181 matched with DB +City: Plainfield, state: Indiana, Lat: 39.6954, Lng: -86.3716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainfield, Ohio 40.2051 -81.7181 matched with DB +City: Plainfield, state: Illinois, Lat: 41.6207, Lng: -88.2253, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Holly, Arkansas 33.3030 -92.9539 matched with DB +City: Mount Holly, state: North Carolina, Lat: 35.3136, Lng: -81.0073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mount Holly, Arkansas 33.3030 -92.9539 matched with DB +City: Mount Holly, state: New Jersey, Lat: 39.995, Lng: -74.7863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Minnesota 45.0105 -96.4189 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Minnesota 45.0105 -96.4189 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arkansas 36.1727 -91.7697 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Oklahoma 36.9001 -98.4235 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roslyn, South Dakota 45.4966 -97.4928 matched with DB +City: Roslyn, state: Pennsylvania, Lat: 40.1311, Lng: -75.1374, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Modesto, Illinois 39.4789 -89.9803 matched with DB +City: Modesto, state: California, Lat: 37.6375, Lng: -121.0028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogden, Arkansas 33.5859 -94.0469 matched with DB +City: Ogden, state: North Carolina, Lat: 34.2656, Lng: -77.7966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Arkansas 33.5859 -94.0469 matched with DB +City: Ogden, state: Utah, Lat: 41.2279, Lng: -111.9682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ogden, Arkansas 33.5859 -94.0469 matched with DB +City: Ogden, state: New York, Lat: 43.1646, Lng: -77.822, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bellingham, Minnesota 45.1367 -96.2840 matched with DB +City: Bellingham, state: Washington, Lat: 48.7548, Lng: -122.469, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bellingham, Minnesota 45.1367 -96.2840 matched with DB +City: Bellingham, state: Massachusetts, Lat: 42.0777, Lng: -71.4741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandywine, West Virginia 38.6218 -79.2415 matched with DB +City: Brandywine, state: Maryland, Lat: 38.6963, Lng: -76.8846, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Kansas 39.4290 -96.7598 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Kansas 39.4290 -96.7598 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Libertyville, Indiana 39.6028 -87.5186 matched with DB +City: Libertyville, state: Illinois, Lat: 42.287, Lng: -87.967, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Plains, Georgia 33.4804 -83.0377 matched with DB +City: White Plains, state: New York, Lat: 41.022, Lng: -73.7547, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Starkville, Colorado 37.1169 -104.5231 matched with DB +City: Starkville, state: Mississippi, Lat: 33.4608, Lng: -88.8297, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Larkspur, Colorado 39.2319 -104.8924 matched with DB +City: Larkspur, state: California, Lat: 37.9393, Lng: -122.5312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverdale, North Dakota 47.4975 -101.3661 matched with DB +City: Riverdale, state: Illinois, Lat: 41.6441, Lng: -87.6366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, North Dakota 47.4975 -101.3661 matched with DB +City: Riverdale, state: Georgia, Lat: 33.5639, Lng: -84.4103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverdale, North Dakota 47.4975 -101.3661 matched with DB +City: Riverdale, state: Utah, Lat: 41.1732, Lng: -112.0023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vincent, Ohio 39.3749 -81.6710 matched with DB +City: Vincent, state: California, Lat: 34.0983, Lng: -117.9238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Campbell, Minnesota 46.0976 -96.4055 matched with DB +City: Campbell, state: California, Lat: 37.2802, Lng: -121.9539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cody, Nebraska 42.9377 -101.2489 matched with DB +City: Cody, state: Wyoming, Lat: 44.5213, Lng: -109.0548, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Kentucky 37.2093 -86.8921 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Kentucky 37.2093 -86.8921 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Kentucky 37.2093 -86.8921 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Kentucky 37.2093 -86.8921 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lima, Illinois 40.1767 -91.3783 matched with DB +City: Lima, state: Ohio, Lat: 40.741, Lng: -84.112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Utah 37.1478 -113.0548 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Havelock, Iowa 42.8330 -94.7010 matched with DB +City: Havelock, state: North Carolina, Lat: 34.9078, Lng: -76.8987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerton, Indiana 39.5150 -86.3950 matched with DB +City: Centerton, state: Arkansas, Lat: 36.3566, Lng: -94.2971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, Kentucky 39.0909 -84.4729 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, Kentucky 39.0909 -84.4729 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fall River, Kansas 37.6078 -96.0286 matched with DB +City: Fall River, state: Massachusetts, Lat: 41.7136, Lng: -71.1015, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland Park, Florida 27.8615 -81.5619 matched with DB +City: Highland Park, state: New Jersey, Lat: 40.5006, Lng: -74.4283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Florida 27.8615 -81.5619 matched with DB +City: Highland Park, state: Michigan, Lat: 42.4052, Lng: -83.0977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Florida 27.8615 -81.5619 matched with DB +City: Highland Park, state: Illinois, Lat: 42.1823, Lng: -87.8104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland Park, Florida 27.8615 -81.5619 matched with DB +City: Highland Park, state: Texas, Lat: 32.8311, Lng: -96.8012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, Missouri 40.5243 -92.5766 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, Arkansas 34.0726 -92.5553 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hooper, Colorado 37.7460 -105.8777 matched with DB +City: Hooper, state: Utah, Lat: 41.1599, Lng: -112.2871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eastvale, Pennsylvania 40.7670 -80.3148 matched with DB +City: Eastvale, state: California, Lat: 33.9617, Lng: -117.5803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lloyd, Florida 30.4822 -84.0244 matched with DB +City: Lloyd, state: New York, Lat: 41.7286, Lng: -73.9961, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmetto, Louisiana 30.7177 -91.9082 matched with DB +City: Palmetto, state: Florida, Lat: 27.5251, Lng: -82.5749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kennedy, Minnesota 48.6441 -96.9106 matched with DB +City: Kennedy, state: Pennsylvania, Lat: 40.4768, Lng: -80.1028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sturgis, Mississippi 33.3452 -89.0458 matched with DB +City: Sturgis, state: Michigan, Lat: 41.7991, Lng: -85.4184, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Severn, North Carolina 36.5143 -77.1893 matched with DB +City: Severn, state: Maryland, Lat: 39.1355, Lng: -76.6956, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Oregon 44.6363 -123.5769 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Oregon 44.6363 -123.5769 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Oregon 44.6363 -123.5769 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hannibal, Ohio 39.6718 -80.8737 matched with DB +City: Hannibal, state: Missouri, Lat: 39.7098, Lng: -91.3939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waldorf, Minnesota 43.9332 -93.6976 matched with DB +City: Waldorf, state: Maryland, Lat: 38.6085, Lng: -76.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewisville, Ohio 39.7671 -81.2182 matched with DB +City: Lewisville, state: North Carolina, Lat: 36.103, Lng: -80.4166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewisville, Ohio 39.7671 -81.2182 matched with DB +City: Lewisville, state: Texas, Lat: 33.0454, Lng: -96.9815, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ogdensburg, Wisconsin 44.4535 -89.0316 matched with DB +City: Ogdensburg, state: New York, Lat: 44.7088, Lng: -75.4717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, Minnesota 48.8070 -95.1010 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, Iowa 41.6427 -94.2700 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparta, Ohio 40.3943 -82.6996 matched with DB +City: Sparta, state: Wisconsin, Lat: 43.9377, Lng: -90.8131, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sparta, Ohio 40.3943 -82.6996 matched with DB +City: Sparta, state: New Jersey, Lat: 41.0486, Lng: -74.6264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hatfield, Wisconsin 44.4164 -90.7409 matched with DB +City: Hatfield, state: Pennsylvania, Lat: 40.2758, Lng: -75.2895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensboro, Indiana 39.8786 -85.4640 matched with DB +City: Greensboro, state: North Carolina, Lat: 36.0956, Lng: -79.8271, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portsmouth, Iowa 41.6501 -95.5192 matched with DB +City: Portsmouth, state: Ohio, Lat: 38.7538, Lng: -82.9445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Iowa 41.6501 -95.5192 matched with DB +City: Portsmouth, state: New Hampshire, Lat: 43.058, Lng: -70.7826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Iowa 41.6501 -95.5192 matched with DB +City: Portsmouth, state: Virginia, Lat: 36.8468, Lng: -76.354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portsmouth, Iowa 41.6501 -95.5192 matched with DB +City: Portsmouth, state: Rhode Island, Lat: 41.5922, Lng: -71.2745, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wooster, Indiana 41.2092 -85.7428 matched with DB +City: Wooster, state: Ohio, Lat: 40.8172, Lng: -81.9336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beatrice, Alabama 31.7332 -87.2090 matched with DB +City: Beatrice, state: Nebraska, Lat: 40.2736, Lng: -96.7455, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, New Mexico 32.9219 -107.5773 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fostoria, Iowa 43.2430 -95.1549 matched with DB +City: Fostoria, state: Ohio, Lat: 41.16, Lng: -83.4121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Kansas 39.8101 -98.5572 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manville, Wyoming 42.7796 -104.6176 matched with DB +City: Manville, state: New Jersey, Lat: 40.542, Lng: -74.5892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fox Lake, Montana 47.6858 -104.6331 matched with DB +City: Fox Lake, state: Illinois, Lat: 42.4239, Lng: -88.1844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, South Dakota 45.6148 -98.3107 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Dakota 45.6148 -98.3107 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Dakota 45.6148 -98.3107 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Dakota 45.6148 -98.3107 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Dakota 45.6148 -98.3107 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, South Dakota 45.6148 -98.3107 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, South Dakota 45.6168 -97.4196 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norman, North Carolina 35.1698 -79.7232 matched with DB +City: Norman, state: Oklahoma, Lat: 35.2335, Lng: -97.3471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Indiana 39.6645 -85.0047 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Indiana 39.6645 -85.0047 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Indiana 39.6645 -85.0047 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheridan, Missouri 40.5171 -94.6145 matched with DB +City: Sheridan, state: Wyoming, Lat: 44.7961, Lng: -106.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Patterson, Ohio 40.7822 -83.5263 matched with DB +City: Patterson, state: California, Lat: 37.4758, Lng: -121.1536, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Patterson, Ohio 40.7822 -83.5263 matched with DB +City: Patterson, state: New York, Lat: 41.4849, Lng: -73.5921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, Alaska 64.3074 -149.1562 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Alaska 64.3074 -149.1562 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Alaska 64.3074 -149.1562 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florissant, Colorado 38.9445 -105.2900 matched with DB +City: Florissant, state: Missouri, Lat: 38.7996, Lng: -90.3269, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pineville, Arkansas 36.1612 -92.1065 matched with DB +City: Pineville, state: Louisiana, Lat: 31.3414, Lng: -92.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pineville, Arkansas 36.1612 -92.1065 matched with DB +City: Pineville, state: North Carolina, Lat: 35.0864, Lng: -80.8915, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Little Rock, Oklahoma 36.2170 -95.0926 matched with DB +City: Little Rock, state: Arkansas, Lat: 34.7256, Lng: -92.3577, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ruskin, Nebraska 40.1440 -97.8670 matched with DB +City: Ruskin, state: Florida, Lat: 27.7065, Lng: -82.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweetwater, Idaho 46.3677 -116.7975 matched with DB +City: Sweetwater, state: Florida, Lat: 25.7785, Lng: -80.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sweetwater, Idaho 46.3677 -116.7975 matched with DB +City: Sweetwater, state: Texas, Lat: 32.4692, Lng: -100.4092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ironton, Michigan 45.2570 -85.1929 matched with DB +City: Ironton, state: Ohio, Lat: 38.5323, Lng: -82.6779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harvey, Iowa 41.3179 -92.9227 matched with DB +City: Harvey, state: Illinois, Lat: 41.6076, Lng: -87.652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harvey, Iowa 41.3179 -92.9227 matched with DB +City: Harvey, state: Louisiana, Lat: 29.8876, Lng: -90.0666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, Iowa 41.4614 -90.8114 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Minnesota 43.7661 -93.9000 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Minnesota 43.7661 -93.9000 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Minnesota 43.7661 -93.9000 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murphy, Idaho 43.2121 -116.5485 matched with DB +City: Murphy, state: Texas, Lat: 33.0186, Lng: -96.6105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Mississippi 34.5000 -88.4726 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Mississippi 34.5000 -88.4726 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westphalia, Kansas 38.1818 -95.4906 matched with DB +City: Westphalia, state: Maryland, Lat: 38.8356, Lng: -76.8298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, Washington 47.3380 -117.2312 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, Washington 47.3380 -117.2312 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, Texas 35.2741 -102.6672 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Iowa 41.6497 -90.7184 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Nebraska 42.3839 -96.9890 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Nebraska 42.3839 -96.9890 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Nebraska 42.3839 -96.9890 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Nebraska 42.3839 -96.9890 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Nebraska 42.3839 -96.9890 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Nebraska 42.3839 -96.9890 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Astoria, South Dakota 44.5577 -96.5465 matched with DB +City: Astoria, state: Oregon, Lat: 46.1856, Lng: -123.8053, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waco, Nebraska 40.8970 -97.4619 matched with DB +City: Waco, state: Texas, Lat: 31.5599, Lng: -97.1882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stuart, Oklahoma 34.9010 -96.0994 matched with DB +City: Stuart, state: Florida, Lat: 27.1959, Lng: -80.2444, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brunswick, Nebraska 42.3377 -97.9718 matched with DB +City: Brunswick, state: Ohio, Lat: 41.2465, Lng: -81.8198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Nebraska 42.3377 -97.9718 matched with DB +City: Brunswick, state: Georgia, Lat: 31.1449, Lng: -81.4746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Nebraska 42.3377 -97.9718 matched with DB +City: Brunswick, state: Maine, Lat: 43.9007, Lng: -69.9761, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brunswick, Nebraska 42.3377 -97.9718 matched with DB +City: Brunswick, state: New York, Lat: 42.7558, Lng: -73.5903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodstock, Minnesota 44.0110 -96.0967 matched with DB +City: Woodstock, state: Illinois, Lat: 42.3096, Lng: -88.4353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodstock, Minnesota 44.0110 -96.0967 matched with DB +City: Woodstock, state: Georgia, Lat: 34.1026, Lng: -84.5091, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanson, Oklahoma 35.4376 -94.6958 matched with DB +City: Hanson, state: Massachusetts, Lat: 42.0558, Lng: -70.8723, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Chester, Iowa 41.3400 -91.8169 matched with DB +City: West Chester, state: Pennsylvania, Lat: 39.9601, Lng: -75.6058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calhoun, Illinois 38.6512 -88.0440 matched with DB +City: Calhoun, state: Georgia, Lat: 34.491, Lng: -84.9386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, Illinois 41.5032 -90.3171 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Illinois 41.5032 -90.3171 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, Illinois 41.5032 -90.3171 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Wyoming 42.0692 -110.9865 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Wyoming 42.0692 -110.9865 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taunton, Minnesota 44.5942 -96.0630 matched with DB +City: Taunton, state: Massachusetts, Lat: 41.9036, Lng: -71.0943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haverhill, Iowa 41.9441 -92.9607 matched with DB +City: Haverhill, state: Massachusetts, Lat: 42.7838, Lng: -71.0871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Louisiana 32.3220 -90.9414 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Arizona 31.6681 -110.5347 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Arizona 31.6681 -110.5347 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Indiana 40.2794 -86.5910 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Indiana 40.2794 -86.5910 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Indiana 40.2794 -86.5910 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alden, Illinois 42.4588 -88.5184 matched with DB +City: Alden, state: New York, Lat: 42.9114, Lng: -78.5211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Badger, South Dakota 44.4855 -97.2079 matched with DB +City: Badger, state: Alaska, Lat: 64.8006, Lng: -147.3877, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Minnesota 46.2992 -93.8264 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Oklahoma 35.1610 -96.5184 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Oklahoma 35.1610 -96.5184 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, South Dakota 42.7634 -96.6480 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, South Dakota 42.7634 -96.6480 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, South Dakota 42.7634 -96.6480 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, South Dakota 42.7634 -96.6480 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverdale, Oregon 45.2006 -123.8842 matched with DB +City: Cloverdale, state: California, Lat: 38.7962, Lng: -123.0152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maysville, Colorado 38.5305 -106.2156 matched with DB +City: Maysville, state: Kentucky, Lat: 38.6455, Lng: -83.7911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dennis, Kansas 37.3469 -95.4078 matched with DB +City: Dennis, state: Massachusetts, Lat: 41.7064, Lng: -70.1644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Vermont 44.1266 -73.1510 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Vermont 44.1266 -73.1510 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gladstone, Illinois 40.8643 -90.9566 matched with DB +City: Gladstone, state: Missouri, Lat: 39.2134, Lng: -94.5592, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gladstone, Illinois 40.8643 -90.9566 matched with DB +City: Gladstone, state: Oregon, Lat: 45.3864, Lng: -122.5934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Oregon 44.1352 -118.9763 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, North Carolina 35.9443 -77.2067 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, North Carolina 35.9443 -77.2067 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, North Carolina 35.9443 -77.2067 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, North Carolina 35.9443 -77.2067 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Lebanon, Louisiana 32.5053 -93.0499 matched with DB +City: Mount Lebanon, state: Pennsylvania, Lat: 40.3752, Lng: -80.0494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Kentucky 36.6691 -88.5276 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Kentucky 36.6691 -88.5276 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Kentucky 36.6691 -88.5276 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Kentucky 36.6691 -88.5276 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Kentucky 36.6691 -88.5276 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Kentucky 36.6691 -88.5276 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Virginia 38.5984 -77.7213 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Virginia 38.5984 -77.7213 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Virginia 38.5984 -77.7213 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Radnor, Ohio 40.3852 -83.1459 matched with DB +City: Radnor, state: Pennsylvania, Lat: 40.0287, Lng: -75.3675, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodlawn, Arkansas 33.9668 -92.0452 matched with DB +City: Woodlawn, state: Maryland, Lat: 39.3054, Lng: -76.7489, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodlawn, Arkansas 33.9668 -92.0452 matched with DB +City: Woodlawn, state: Virginia, Lat: 38.7332, Lng: -77.1149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ames, New York 42.8373 -74.6015 matched with DB +City: Ames, state: Iowa, Lat: 42.0256, Lng: -93.6217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Maryland 39.4993 -79.0511 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Colorado 40.3948 -104.6893 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Colorado 40.3948 -104.6893 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Colorado 40.3948 -104.6893 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Colorado 40.3948 -104.6893 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Colorado 40.3948 -104.6893 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Colorado 40.3948 -104.6893 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Troy, South Carolina 33.9880 -82.2974 matched with DB +City: Troy, state: Michigan, Lat: 42.5817, Lng: -83.1457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, South Carolina 33.9880 -82.2974 matched with DB +City: Troy, state: New York, Lat: 42.7354, Lng: -73.6751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, South Carolina 33.9880 -82.2974 matched with DB +City: Troy, state: Alabama, Lat: 31.8021, Lng: -85.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, South Carolina 33.9880 -82.2974 matched with DB +City: Troy, state: Ohio, Lat: 40.0437, Lng: -84.2186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, South Carolina 33.9880 -82.2974 matched with DB +City: Troy, state: Missouri, Lat: 38.9708, Lng: -90.9714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Troy, South Carolina 33.9880 -82.2974 matched with DB +City: Troy, state: Illinois, Lat: 38.7268, Lng: -89.8977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Luis, New Mexico 35.7009 -107.0431 matched with DB +City: San Luis, state: Arizona, Lat: 32.4911, Lng: -114.7089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Maple Grove, Michigan 44.7091 -85.8538 matched with DB +City: Maple Grove, state: Minnesota, Lat: 45.1089, Lng: -93.4626, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ross, Texas 31.7282 -97.1123 matched with DB +City: Ross, state: Pennsylvania, Lat: 40.5256, Lng: -80.0243, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elk River, Idaho 46.7828 -116.1810 matched with DB +City: Elk River, state: Minnesota, Lat: 45.3314, Lng: -93.567, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey, Virginia 38.4116 -79.5809 matched with DB +City: Monterey, state: California, Lat: 36.5919, Lng: -121.8808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cheney, Nebraska 40.7261 -96.5936 matched with DB +City: Cheney, state: Washington, Lat: 47.4901, Lng: -117.579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cairo, West Virginia 39.2068 -81.1543 matched with DB +City: Cairo, state: Georgia, Lat: 30.879, Lng: -84.205, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Avon, Montana 46.6264 -112.5820 matched with DB +City: Avon, state: Ohio, Lat: 41.4485, Lng: -82.0187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Avon, Montana 46.6264 -112.5820 matched with DB +City: Avon, state: Indiana, Lat: 39.7601, Lng: -86.3916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Missouri 39.2005 -94.5705 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Crosse, Florida 29.8395 -82.3784 matched with DB +City: La Crosse, state: Wisconsin, Lat: 43.8241, Lng: -91.2268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, South Carolina 34.0391 -82.2435 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, Kansas 39.6570 -96.0288 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roy, Montana 47.3343 -108.9600 matched with DB +City: Roy, state: Utah, Lat: 41.1714, Lng: -112.0485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peru, Kansas 37.0803 -96.0962 matched with DB +City: Peru, state: Illinois, Lat: 41.3482, Lng: -89.1371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peru, Kansas 37.0803 -96.0962 matched with DB +City: Peru, state: Indiana, Lat: 40.7593, Lng: -86.0756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saco, Montana 48.4571 -107.3414 matched with DB +City: Saco, state: Maine, Lat: 43.539, Lng: -70.4624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Iowa 42.6748 -93.1298 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Iowa 42.6748 -93.1298 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sedalia, Kentucky 36.6437 -88.6049 matched with DB +City: Sedalia, state: Missouri, Lat: 38.7059, Lng: -93.234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antioch, Indiana 40.2273 -86.5056 matched with DB +City: Antioch, state: Illinois, Lat: 42.4742, Lng: -88.0721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Antioch, Indiana 40.2273 -86.5056 matched with DB +City: Antioch, state: California, Lat: 37.9787, Lng: -121.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Birmingham, Missouri 39.1676 -94.4501 matched with DB +City: Birmingham, state: Michigan, Lat: 42.5446, Lng: -83.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Birmingham, Missouri 39.1676 -94.4501 matched with DB +City: Birmingham, state: Alabama, Lat: 33.5279, Lng: -86.7971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vicksburg, Pennsylvania 40.9384 -76.9905 matched with DB +City: Vicksburg, state: Mississippi, Lat: 32.3173, Lng: -90.8868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moscow, Ohio 38.8601 -84.2281 matched with DB +City: Moscow, state: Idaho, Lat: 46.7308, Lng: -116.9986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, North Carolina 35.0640 -77.3553 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, North Carolina 35.0640 -77.3553 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, North Carolina 35.0640 -77.3553 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scott, Indiana 41.7337 -85.5569 matched with DB +City: Scott, state: Pennsylvania, Lat: 40.3875, Lng: -80.0791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamstown, Kansas 39.0642 -95.3324 matched with DB +City: Williamstown, state: New Jersey, Lat: 39.6874, Lng: -74.9786, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amsterdam, Montana 45.7462 -111.3301 matched with DB +City: Amsterdam, state: New York, Lat: 42.942, Lng: -74.1906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allen, Maryland 38.2894 -75.6904 matched with DB +City: Allen, state: Texas, Lat: 33.1088, Lng: -96.6735, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eugene, Indiana 39.9664 -87.4728 matched with DB +City: Eugene, state: Oregon, Lat: 44.0564, Lng: -123.1174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, Illinois 38.7176 -87.9728 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, Illinois 38.7176 -87.9728 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamont, Washington 47.2007 -117.9049 matched with DB +City: Lamont, state: California, Lat: 35.2659, Lng: -118.9159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lansing, Minnesota 43.7476 -92.9657 matched with DB +City: Lansing, state: Kansas, Lat: 39.2428, Lng: -94.8972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Minnesota 43.7476 -92.9657 matched with DB +City: Lansing, state: Michigan, Lat: 42.7142, Lng: -84.5601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Minnesota 43.7476 -92.9657 matched with DB +City: Lansing, state: New York, Lat: 42.5667, Lng: -76.5316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lansing, Minnesota 43.7476 -92.9657 matched with DB +City: Lansing, state: Illinois, Lat: 41.5648, Lng: -87.5462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, Illinois 40.4744 -90.2951 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Illinois 40.4744 -90.2951 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Illinois 40.4744 -90.2951 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Illinois 40.4744 -90.2951 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Foley, Missouri 39.0457 -90.7414 matched with DB +City: Foley, state: Alabama, Lat: 30.3983, Lng: -87.665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Louisiana 31.8064 -92.7383 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Massachusetts, Lat: 42.1155, Lng: -72.5395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Ohio, Lat: 39.93, Lng: -83.7959, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Virginia, Lat: 38.781, Lng: -77.1839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Illinois, Lat: 39.7709, Lng: -89.654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Missouri, Lat: 37.1943, Lng: -93.2916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Tennessee, Lat: 36.4949, Lng: -86.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Oregon, Lat: 44.0538, Lng: -122.9811, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: New Jersey, Lat: 40.6994, Lng: -74.3254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Vermont, Lat: 43.2907, Lng: -72.4809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Pennsylvania, Lat: 39.9281, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springfield, Wisconsin 42.6407 -88.4135 matched with DB +City: Springfield, state: Pennsylvania, Lat: 40.0986, Lng: -75.2016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Creek, South Dakota 43.1154 -101.0306 matched with DB +City: Spring Creek, state: Nevada, Lat: 40.745, Lng: -115.5983, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, Kentucky 37.2980 -84.2157 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, Kentucky 37.2980 -84.2157 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Washington, California 36.8793 -119.7613 matched with DB +City: Fort Washington, state: Maryland, Lat: 38.7339, Lng: -77.0069, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithtown, North Carolina 36.2326 -80.5711 matched with DB +City: Smithtown, state: New York, Lat: 40.8663, Lng: -73.2164, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, Missouri 39.3632 -94.2006 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterville, Iowa 43.2077 -91.2966 matched with DB +City: Waterville, state: Maine, Lat: 44.5441, Lng: -69.6624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Syracuse, Missouri 38.6695 -92.8764 matched with DB +City: Syracuse, state: New York, Lat: 43.0407, Lng: -76.1437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Syracuse, Missouri 38.6695 -92.8764 matched with DB +City: Syracuse, state: Utah, Lat: 41.0859, Lng: -112.0698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edison, Nebraska 40.2792 -99.7758 matched with DB +City: Edison, state: New Jersey, Lat: 40.536, Lng: -74.3697, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Mississippi 33.7797 -89.0507 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, Indiana 39.9034 -84.9452 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Indiana 39.9034 -84.9452 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Indiana 39.9034 -84.9452 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburg, Indiana 40.5928 -86.7017 matched with DB +City: Pittsburg, state: Kansas, Lat: 37.4129, Lng: -94.6985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pittsburg, Indiana 40.5928 -86.7017 matched with DB +City: Pittsburg, state: California, Lat: 38.0182, Lng: -121.8965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Tennessee 36.3285 -84.6091 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Tennessee 36.3285 -84.6091 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, Iowa 42.2496 -94.8777 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingsbury, Texas 29.6541 -97.8000 matched with DB +City: Kingsbury, state: New York, Lat: 43.344, Lng: -73.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Reading, Kansas 38.5192 -95.9574 matched with DB +City: Reading, state: Pennsylvania, Lat: 40.34, Lng: -75.9267, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Kansas 38.5192 -95.9574 matched with DB +City: Reading, state: Ohio, Lat: 39.2242, Lng: -84.4333, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Reading, Kansas 38.5192 -95.9574 matched with DB +City: Reading, state: Massachusetts, Lat: 42.5351, Lng: -71.1056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pace, Mississippi 33.7922 -90.8594 matched with DB +City: Pace, state: Florida, Lat: 30.6188, Lng: -87.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pittsburg, Oklahoma 34.7116 -95.8502 matched with DB +City: Pittsburg, state: Kansas, Lat: 37.4129, Lng: -94.6985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pittsburg, Oklahoma 34.7116 -95.8502 matched with DB +City: Pittsburg, state: California, Lat: 38.0182, Lng: -121.8965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, Missouri 39.8886 -94.0866 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rocky Point, Montana 47.7323 -114.1855 matched with DB +City: Rocky Point, state: New York, Lat: 40.9357, Lng: -72.9364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guthrie, Texas 33.6215 -100.3290 matched with DB +City: Guthrie, state: Oklahoma, Lat: 35.8424, Lng: -97.4366, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Illinois 39.8157 -90.3705 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Illinois 39.8157 -90.3705 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Illinois 39.8157 -90.3705 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Illinois 39.8157 -90.3705 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Illinois 39.8157 -90.3705 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Illinois 39.8157 -90.3705 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwood, Michigan 45.2239 -85.3791 matched with DB +City: Norwood, state: Ohio, Lat: 39.1605, Lng: -84.4535, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Norwood, Michigan 45.2239 -85.3791 matched with DB +City: Norwood, state: Massachusetts, Lat: 42.1861, Lng: -71.1948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Kansas 39.6333 -97.1399 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Kansas 39.6333 -97.1399 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, California 36.7361 -119.4961 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, California 36.7361 -119.4961 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Louisiana 32.1165 -93.1172 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Louisiana 32.1165 -93.1172 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Louisiana 32.1165 -93.1172 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Louisiana 32.1165 -93.1172 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Louisiana 32.1165 -93.1172 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Louisiana 32.1165 -93.1172 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Ohio 40.3350 -83.4635 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sutton, Vermont 44.6290 -72.0277 matched with DB +City: Sutton, state: Massachusetts, Lat: 42.1337, Lng: -71.7503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tacoma, Virginia 36.9356 -82.5323 matched with DB +City: Tacoma, state: Washington, Lat: 47.2431, Lng: -122.4531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monument, Oregon 44.8208 -119.4209 matched with DB +City: Monument, state: Colorado, Lat: 39.0736, Lng: -104.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Commerce, Missouri 37.1583 -89.4467 matched with DB +City: Commerce, state: California, Lat: 33.9963, Lng: -118.1519, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Commerce, Missouri 37.1583 -89.4467 matched with DB +City: Commerce, state: Texas, Lat: 33.2421, Lng: -95.8992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Iowa 43.4916 -92.3640 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Iowa 43.4916 -92.3640 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Carthage, South Dakota 44.1686 -97.7150 matched with DB +City: Carthage, state: Missouri, Lat: 37.1503, Lng: -94.3225, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williston, Maryland 38.8307 -75.8510 matched with DB +City: Williston, state: North Dakota, Lat: 48.1814, Lng: -103.6364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Williston, Maryland 38.8307 -75.8510 matched with DB +City: Williston, state: Vermont, Lat: 44.4345, Lng: -73.0888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, Pennsylvania 41.8638 -76.9576 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Pennsylvania 41.8638 -76.9576 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Pennsylvania 41.8638 -76.9576 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuckahoe, New Jersey 39.2892 -74.7497 matched with DB +City: Tuckahoe, state: Virginia, Lat: 37.5878, Lng: -77.5858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Ohio 41.1246 -82.3058 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Ohio 41.1246 -82.3058 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Ohio 41.1246 -82.3058 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Ohio 41.1246 -82.3058 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Kentucky 38.2218 -85.6171 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Kentucky 38.2218 -85.6171 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Kentucky 38.2218 -85.6171 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Kentucky 38.2218 -85.6171 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Nebraska 40.7393 -96.8461 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason City, Nebraska 41.2222 -99.2988 matched with DB +City: Mason City, state: Iowa, Lat: 43.1487, Lng: -93.1997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, Kansas 39.0138 -97.9755 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Virginia 39.1987 -77.7239 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Melrose, Iowa 40.9791 -93.0508 matched with DB +City: Melrose, state: Massachusetts, Lat: 42.4556, Lng: -71.059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockland, Idaho 42.5731 -112.8744 matched with DB +City: Rockland, state: Massachusetts, Lat: 42.1295, Lng: -70.91, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hendersonville, Pennsylvania 40.3007 -80.1583 matched with DB +City: Hendersonville, state: Tennessee, Lat: 36.3063, Lng: -86.5997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hendersonville, Pennsylvania 40.3007 -80.1583 matched with DB +City: Hendersonville, state: North Carolina, Lat: 35.3247, Lng: -82.4575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Wisconsin 42.6389 -89.1712 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Wisconsin 42.6389 -89.1712 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Wisconsin 42.6389 -89.1712 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Wisconsin 42.6389 -89.1712 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Wisconsin 42.6389 -89.1712 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Wisconsin 42.6389 -89.1712 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Indiana 39.4414 -85.8839 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Indiana 39.4414 -85.8839 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockingham, Georgia 31.5441 -82.4145 matched with DB +City: Rockingham, state: North Carolina, Lat: 34.9386, Lng: -79.7608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodburn, Iowa 41.0108 -93.5963 matched with DB +City: Woodburn, state: Oregon, Lat: 45.1472, Lng: -122.8603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodburn, Iowa 41.0108 -93.5963 matched with DB +City: Woodburn, state: Virginia, Lat: 38.8503, Lng: -77.2322, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baxter, West Virginia 39.5410 -80.1439 matched with DB +City: Baxter, state: Minnesota, Lat: 46.3426, Lng: -94.2793, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shiloh, Tennessee 35.1104 -88.3638 matched with DB +City: Shiloh, state: Illinois, Lat: 38.5534, Lng: -89.9161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Tennessee 35.1104 -88.3638 matched with DB +City: Shiloh, state: Pennsylvania, Lat: 39.9732, Lng: -76.792, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Shiloh, Tennessee 35.1104 -88.3638 matched with DB +City: Shiloh, state: Ohio, Lat: 39.8159, Lng: -84.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Henderson, Maryland 39.0750 -75.7660 matched with DB +City: Henderson, state: Kentucky, Lat: 37.8397, Lng: -87.5798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Maryland 39.0750 -75.7660 matched with DB +City: Henderson, state: North Carolina, Lat: 36.3256, Lng: -78.4151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Maryland 39.0750 -75.7660 matched with DB +City: Henderson, state: Nevada, Lat: 36.0133, Lng: -115.0381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Henderson, Maryland 39.0750 -75.7660 matched with DB +City: Henderson, state: Texas, Lat: 32.1576, Lng: -94.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Michigan 45.4188 -84.8634 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Michigan 45.4188 -84.8634 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Michigan 45.4188 -84.8634 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Michigan 45.4188 -84.8634 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Michigan 44.4927 -86.2362 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Michigan 44.4927 -86.2362 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlett, Nebraska 41.8839 -98.5527 matched with DB +City: Bartlett, state: Illinois, Lat: 41.9804, Lng: -88.2071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bartlett, Nebraska 41.8839 -98.5527 matched with DB +City: Bartlett, state: Tennessee, Lat: 35.2337, Lng: -89.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Maryland 38.9170 -75.9416 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livingston, South Carolina 33.5531 -81.1196 matched with DB +City: Livingston, state: California, Lat: 37.3875, Lng: -120.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Livingston, South Carolina 33.5531 -81.1196 matched with DB +City: Livingston, state: New Jersey, Lat: 40.7855, Lng: -74.3291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Dodge, Kansas 37.7304 -99.9370 matched with DB +City: Fort Dodge, state: Iowa, Lat: 42.5098, Lng: -94.1751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Idaho 46.9152 -116.8315 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Idaho 46.9152 -116.8315 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Idaho 46.9152 -116.8315 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wadsworth, New York 42.8214 -77.8939 matched with DB +City: Wadsworth, state: Ohio, Lat: 41.0279, Lng: -81.7323, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchellville, Tennessee 36.6344 -86.5400 matched with DB +City: Mitchellville, state: Maryland, Lat: 38.9358, Lng: -76.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Iowa 41.5908 -90.8565 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ludlow, Missouri 39.6541 -93.7025 matched with DB +City: Ludlow, state: Massachusetts, Lat: 42.1921, Lng: -72.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cloverdale, Ohio 41.0193 -84.3035 matched with DB +City: Cloverdale, state: California, Lat: 38.7962, Lng: -123.0152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tuscumbia, Missouri 38.2369 -92.4601 matched with DB +City: Tuscumbia, state: Alabama, Lat: 34.7204, Lng: -87.7035, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, Nebraska 40.6298 -97.7146 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, Nebraska 40.6298 -97.7146 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Baltimore, Pennsylvania 39.9835 -78.7723 matched with DB +City: New Baltimore, state: Michigan, Lat: 42.6904, Lng: -82.7398, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Baltimore, Pennsylvania 39.9835 -78.7723 matched with DB +City: New Baltimore, state: Virginia, Lat: 38.7495, Lng: -77.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, North Carolina 36.5372 -79.2081 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Carolina 36.5372 -79.2081 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Carolina 36.5372 -79.2081 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Carolina 36.5372 -79.2081 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Carolina 36.5372 -79.2081 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Carolina 36.5372 -79.2081 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerfield, Kansas 39.9968 -96.3493 matched with DB +City: Summerfield, state: North Carolina, Lat: 36.1973, Lng: -79.8997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summerfield, Kansas 39.9968 -96.3493 matched with DB +City: Summerfield, state: Maryland, Lat: 38.9042, Lng: -76.8678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewater Park, Oklahoma 34.8247 -98.3752 matched with DB +City: Edgewater Park, state: New Jersey, Lat: 40.054, Lng: -74.9117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middlebury, Indiana 39.2649 -87.1193 matched with DB +City: Middlebury, state: Vermont, Lat: 44.0043, Lng: -73.1218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Muncie, Illinois 40.1161 -87.8431 matched with DB +City: Muncie, state: Indiana, Lat: 40.1989, Lng: -85.395, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Oregon 43.6378 -123.5687 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amsterdam, Missouri 38.3493 -94.5890 matched with DB +City: Amsterdam, state: New York, Lat: 42.942, Lng: -74.1906, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Circleville, Kansas 39.5095 -95.8555 matched with DB +City: Circleville, state: Ohio, Lat: 39.6063, Lng: -82.9334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylor, Nebraska 41.7696 -99.3814 matched with DB +City: Taylor, state: Michigan, Lat: 42.226, Lng: -83.2688, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Taylor, Nebraska 41.7696 -99.3814 matched with DB +City: Taylor, state: Texas, Lat: 30.5729, Lng: -97.4268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Casas Adobes, New Mexico 32.8095 -107.9391 matched with DB +City: Casas Adobes, state: Arizona, Lat: 32.3423, Lng: -111.0113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron, Indiana 38.7223 -86.6706 matched with DB +City: Huron, state: South Dakota, Lat: 44.3623, Lng: -98.2094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denison, Kansas 39.3938 -95.6285 matched with DB +City: Denison, state: Texas, Lat: 33.7672, Lng: -96.5808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, Kansas 37.4432 -97.7694 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kansas 37.4432 -97.7694 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kansas 37.4432 -97.7694 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kansas 37.4432 -97.7694 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kansas 37.4432 -97.7694 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, Kansas 37.4432 -97.7694 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, South Carolina 34.8879 -82.9752 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Carolina 34.8879 -82.9752 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Carolina 34.8879 -82.9752 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Carolina 34.8879 -82.9752 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Carolina 34.8879 -82.9752 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, South Carolina 34.8879 -82.9752 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, Iowa 41.4385 -92.1717 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Iowa 41.4385 -92.1717 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Iowa 41.4385 -92.1717 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: West Point, Arkansas 35.2034 -91.6100 matched with DB +City: West Point, state: Mississippi, Lat: 33.6064, Lng: -88.6572, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: West Point, Arkansas 35.2034 -91.6100 matched with DB +City: West Point, state: Utah, Lat: 41.122, Lng: -112.0995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naples, Illinois 39.7534 -90.6069 matched with DB +City: Naples, state: Florida, Lat: 26.1504, Lng: -81.7936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sussex, Virginia 36.9173 -77.2719 matched with DB +City: Sussex, state: Wisconsin, Lat: 43.1346, Lng: -88.2226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Pennsylvania 40.3103 -78.2862 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Pennsylvania 40.3103 -78.2862 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Kansas 38.0770 -99.2445 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Magnolia, Iowa 41.6921 -95.8740 matched with DB +City: Magnolia, state: Arkansas, Lat: 33.2775, Lng: -93.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westphalia, Iowa 41.7192 -95.3937 matched with DB +City: Westphalia, state: Maryland, Lat: 38.8356, Lng: -76.8298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Layton, Florida 24.8247 -80.8128 matched with DB +City: Layton, state: Utah, Lat: 41.077, Lng: -111.962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, Washington 47.0887 -117.0464 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Washington 47.0887 -117.0464 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Washington 47.0887 -117.0464 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Washington 47.0887 -117.0464 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Washington 47.0887 -117.0464 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, Washington 47.0887 -117.0464 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsboro, Iowa 40.8372 -91.7113 matched with DB +City: Hillsboro, state: Oregon, Lat: 45.5273, Lng: -122.936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, California 37.6636 -120.4635 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, California 37.6636 -120.4635 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, California 37.6636 -120.4635 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewistown, Ohio 40.4238 -83.8846 matched with DB +City: Lewistown, state: Pennsylvania, Lat: 40.5964, Lng: -77.573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Craig, Nebraska 41.7852 -96.3624 matched with DB +City: Craig, state: Colorado, Lat: 40.5171, Lng: -107.5554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Superior, Iowa 43.4336 -94.9467 matched with DB +City: Superior, state: Colorado, Lat: 39.934, Lng: -105.1588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Superior, Iowa 43.4336 -94.9467 matched with DB +City: Superior, state: Wisconsin, Lat: 46.6941, Lng: -92.0823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sweetwater, Oklahoma 35.4222 -99.9116 matched with DB +City: Sweetwater, state: Florida, Lat: 25.7785, Lng: -80.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sweetwater, Oklahoma 35.4222 -99.9116 matched with DB +City: Sweetwater, state: Texas, Lat: 32.4692, Lng: -100.4092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eugene, Missouri 38.3547 -92.4031 matched with DB +City: Eugene, state: Oregon, Lat: 44.0564, Lng: -123.1174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, New York 42.4813 -74.6062 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, New York 42.4813 -74.6062 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, New York 42.4813 -74.6062 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wildwood, Indiana 41.5932 -85.1897 matched with DB +City: Wildwood, state: Missouri, Lat: 38.58, Lng: -90.6698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wildwood, Indiana 41.5932 -85.1897 matched with DB +City: Wildwood, state: Florida, Lat: 28.7752, Lng: -82.0075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendota, Minnesota 44.8876 -93.1609 matched with DB +City: Mendota, state: California, Lat: 36.7555, Lng: -120.3776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monmouth, Iowa 42.0751 -90.8822 matched with DB +City: Monmouth, state: Illinois, Lat: 40.914, Lng: -90.6425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monmouth, Iowa 42.0751 -90.8822 matched with DB +City: Monmouth, state: Oregon, Lat: 44.8505, Lng: -123.2284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentor, Minnesota 47.6966 -96.1440 matched with DB +City: Mentor, state: Ohio, Lat: 41.6893, Lng: -81.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glendora, Mississippi 33.8275 -90.2926 matched with DB +City: Glendora, state: California, Lat: 34.1449, Lng: -117.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, West Virginia 39.5010 -80.5549 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, West Virginia 39.5010 -80.5549 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, West Virginia 39.5010 -80.5549 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, West Virginia 39.5010 -80.5549 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, California 39.9738 -122.1732 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, California 39.9738 -122.1732 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bennington, Idaho 42.3827 -111.3228 matched with DB +City: Bennington, state: Vermont, Lat: 42.8854, Lng: -73.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Nevada 39.2101 -117.0679 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Nevada 39.2101 -117.0679 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Nevada 39.2101 -117.0679 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danvers, Minnesota 45.2814 -95.7559 matched with DB +City: Danvers, state: Massachusetts, Lat: 42.574, Lng: -70.9494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hopewell, Pennsylvania 40.1345 -78.2666 matched with DB +City: Hopewell, state: Virginia, Lat: 37.2915, Lng: -77.2985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hopewell, Pennsylvania 40.1345 -78.2666 matched with DB +City: Hopewell, state: Pennsylvania, Lat: 40.5906, Lng: -80.2731, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgewater, Connecticut 41.5347 -73.3646 matched with DB +City: Bridgewater, state: Massachusetts, Lat: 41.9728, Lng: -70.9749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgewater, Connecticut 41.5347 -73.3646 matched with DB +City: Bridgewater, state: New Jersey, Lat: 40.5934, Lng: -74.6076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delaware, Iowa 42.4718 -91.3391 matched with DB +City: Delaware, state: Ohio, Lat: 40.2851, Lng: -83.0741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Arizona 33.8461 -109.1433 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Arizona 33.8461 -109.1433 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seven Oaks, Texas 30.8518 -94.8578 matched with DB +City: Seven Oaks, state: South Carolina, Lat: 34.0475, Lng: -81.1435, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indianola, Oklahoma 35.1637 -95.7761 matched with DB +City: Indianola, state: Iowa, Lat: 41.3629, Lng: -93.5652, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Indianola, Oklahoma 35.1637 -95.7761 matched with DB +City: Indianola, state: Mississippi, Lat: 33.4492, Lng: -90.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clifton, Ohio 39.7972 -83.8257 matched with DB +City: Clifton, state: New Jersey, Lat: 40.863, Lng: -74.1575, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clifton, Ohio 39.7972 -83.8257 matched with DB +City: Clifton, state: Colorado, Lat: 39.0764, Lng: -108.4605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmira, California 38.3523 -121.9077 matched with DB +City: Elmira, state: New York, Lat: 42.0938, Lng: -76.8097, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Enterprise, Oklahoma 35.2248 -95.3768 matched with DB +City: Enterprise, state: Alabama, Lat: 31.3275, Lng: -85.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Enterprise, Oklahoma 35.2248 -95.3768 matched with DB +City: Enterprise, state: Nevada, Lat: 36.0091, Lng: -115.2278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise Valley, Nevada 41.4937 -117.5470 matched with DB +City: Paradise Valley, state: Arizona, Lat: 33.5434, Lng: -111.9595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Georgia 32.5790 -84.5516 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Georgia 32.5790 -84.5516 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Kansas 39.7320 -95.2696 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cusseta, Alabama 32.7876 -85.3057 matched with DB +City: Cusseta, state: Georgia, Lat: 32.347, Lng: -84.787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Garden, Alabama 33.9730 -85.5558 matched with DB +City: Spring Garden, state: Pennsylvania, Lat: 39.9454, Lng: -76.7212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, Kentucky 38.2468 -85.5612 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newberry, Indiana 38.9238 -87.0193 matched with DB +City: Newberry, state: South Carolina, Lat: 34.2813, Lng: -81.601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newberry, Indiana 38.9238 -87.0193 matched with DB +City: Newberry, state: Pennsylvania, Lat: 40.1286, Lng: -76.7919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Arkansas 36.0044 -91.6583 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lexington, Oregon 45.4462 -119.6879 matched with DB +City: Lexington, state: Nebraska, Lat: 40.7779, Lng: -99.7461, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oregon 45.4462 -119.6879 matched with DB +City: Lexington, state: Kentucky, Lat: 38.0423, Lng: -84.4587, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oregon 45.4462 -119.6879 matched with DB +City: Lexington, state: North Carolina, Lat: 35.8018, Lng: -80.2682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oregon 45.4462 -119.6879 matched with DB +City: Lexington, state: South Carolina, Lat: 33.989, Lng: -81.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lexington, Oregon 45.4462 -119.6879 matched with DB +City: Lexington, state: Massachusetts, Lat: 42.4456, Lng: -71.2307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Illinois 39.5487 -90.4800 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Illinois 39.5487 -90.4800 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Booneville, Kentucky 37.4702 -83.6828 matched with DB +City: Booneville, state: Mississippi, Lat: 34.6643, Lng: -88.5684, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dumont, Minnesota 45.7174 -96.4231 matched with DB +City: Dumont, state: New Jersey, Lat: 40.9452, Lng: -73.9923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, Oklahoma 34.8780 -97.7088 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit, Kansas 38.9360 -97.1269 matched with DB +City: Detroit, state: Michigan, Lat: 42.3834, Lng: -83.1024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Port Royal, Virginia 38.1657 -77.1989 matched with DB +City: Port Royal, state: South Carolina, Lat: 32.3557, Lng: -80.7029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Indiana 39.7859 -87.3903 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Graham, Missouri 40.2013 -95.0404 matched with DB +City: Graham, state: North Carolina, Lat: 36.0589, Lng: -79.3894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Missouri 40.2013 -95.0404 matched with DB +City: Graham, state: Washington, Lat: 47.0322, Lng: -122.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Missouri 40.2013 -95.0404 matched with DB +City: Graham, state: Texas, Lat: 33.1017, Lng: -98.5779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hays, Texas 30.1214 -97.8725 matched with DB +City: Hays, state: Kansas, Lat: 38.8821, Lng: -99.3221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Oklahoma 36.2755 -99.3381 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Oklahoma 36.2755 -99.3381 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Murphy, Oklahoma 36.1341 -95.2414 matched with DB +City: Murphy, state: Texas, Lat: 33.0186, Lng: -96.6105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, South Dakota 44.0711 -101.1554 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, South Dakota 44.0711 -101.1554 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, South Dakota 44.0711 -101.1554 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geddes, South Dakota 43.2540 -98.6974 matched with DB +City: Geddes, state: New York, Lat: 43.0762, Lng: -76.2252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Oklahoma 36.9945 -98.0351 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Oklahoma 36.9945 -98.0351 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Oklahoma 36.9945 -98.0351 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Oklahoma 36.9945 -98.0351 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Oklahoma 36.9945 -98.0351 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Oklahoma 36.9945 -98.0351 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Navarre, Kansas 38.7989 -97.1069 matched with DB +City: Navarre, state: Florida, Lat: 30.4174, Lng: -86.8907, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ithaca, Nebraska 41.1594 -96.5394 matched with DB +City: Ithaca, state: New York, Lat: 42.4442, Lng: -76.5032, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Michigan 47.2992 -88.3607 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Michigan 47.2992 -88.3607 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midland, Indiana 39.1220 -87.1917 matched with DB +City: Midland, state: Michigan, Lat: 43.6241, Lng: -84.2319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Indiana 39.1220 -87.1917 matched with DB +City: Midland, state: Washington, Lat: 47.1734, Lng: -122.412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Midland, Indiana 39.1220 -87.1917 matched with DB +City: Midland, state: Texas, Lat: 32.0243, Lng: -102.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hammond, Minnesota 44.2226 -92.3743 matched with DB +City: Hammond, state: Indiana, Lat: 41.6168, Lng: -87.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hammond, Minnesota 44.2226 -92.3743 matched with DB +City: Hammond, state: Louisiana, Lat: 30.5061, Lng: -90.4563, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Minnesota 46.3798 -96.1309 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Minnesota 46.4584 -94.0488 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Minnesota 46.4584 -94.0488 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boaz, Wisconsin 43.3299 -90.5277 matched with DB +City: Boaz, state: Alabama, Lat: 34.1985, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brook Park, Minnesota 45.9484 -93.0728 matched with DB +City: Brook Park, state: Ohio, Lat: 41.4036, Lng: -81.8219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raritan, Illinois 40.6958 -90.8251 matched with DB +City: Raritan, state: New Jersey, Lat: 40.507, Lng: -74.8662, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cecil, Ohio 41.2190 -84.6017 matched with DB +City: Cecil, state: Pennsylvania, Lat: 40.3147, Lng: -80.1942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buffalo, North Dakota 46.9193 -97.5507 matched with DB +City: Buffalo, state: New York, Lat: 42.9018, Lng: -78.8487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Buffalo, North Dakota 46.9193 -97.5507 matched with DB +City: Buffalo, state: Minnesota, Lat: 45.1794, Lng: -93.8644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenville, North Carolina 35.1718 -83.1273 matched with DB +City: Glenville, state: New York, Lat: 42.8869, Lng: -73.9925, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfax, South Dakota 43.0281 -98.8890 matched with DB +City: Fairfax, state: Virginia, Lat: 38.8531, Lng: -77.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory, Oklahoma 34.5569 -96.8584 matched with DB +City: Hickory, state: North Carolina, Lat: 35.741, Lng: -81.3223, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Halfway, Missouri 37.6189 -93.2387 matched with DB +City: Halfway, state: Maryland, Lat: 39.6162, Lng: -77.7703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, Indiana 38.4440 -86.0261 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vicksburg, Indiana 39.0906 -87.1981 matched with DB +City: Vicksburg, state: Mississippi, Lat: 32.3173, Lng: -90.8868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westfield, Iowa 42.7562 -96.6054 matched with DB +City: Westfield, state: Massachusetts, Lat: 42.1382, Lng: -72.7561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Iowa 42.7562 -96.6054 matched with DB +City: Westfield, state: New Jersey, Lat: 40.6516, Lng: -74.3432, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westfield, Iowa 42.7562 -96.6054 matched with DB +City: Westfield, state: Indiana, Lat: 40.0341, Lng: -86.1529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somers, Iowa 42.3788 -94.4310 matched with DB +City: Somers, state: New York, Lat: 41.3056, Lng: -73.7252, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Wisconsin 43.2587 -88.6292 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Godfrey, Georgia 33.4513 -83.5030 matched with DB +City: Godfrey, state: Illinois, Lat: 38.9577, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seven Hills, Colorado 40.0361 -105.3323 matched with DB +City: Seven Hills, state: Ohio, Lat: 41.3803, Lng: -81.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunset, Arkansas 35.2240 -90.2056 matched with DB +City: Sunset, state: Florida, Lat: 25.706, Lng: -80.353, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, Alaska 60.8924 -149.6352 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin, Iowa 42.0731 -90.8386 matched with DB +City: Baldwin, state: Pennsylvania, Lat: 40.369, Lng: -79.9669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Baldwin, Iowa 42.0731 -90.8386 matched with DB +City: Baldwin, state: New York, Lat: 40.6511, Lng: -73.6075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Maryland 39.4794 -79.0768 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Maryland 39.4794 -79.0768 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Maryland 39.4794 -79.0768 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Maryland 39.4794 -79.0768 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Canton, Indiana 38.6239 -86.0347 matched with DB +City: Canton, state: Ohio, Lat: 40.8078, Lng: -81.3676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Indiana 38.6239 -86.0347 matched with DB +City: Canton, state: New York, Lat: 44.5802, Lng: -75.1978, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Indiana 38.6239 -86.0347 matched with DB +City: Canton, state: Illinois, Lat: 40.5632, Lng: -90.0409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Indiana 38.6239 -86.0347 matched with DB +City: Canton, state: Georgia, Lat: 34.2467, Lng: -84.4897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Indiana 38.6239 -86.0347 matched with DB +City: Canton, state: Mississippi, Lat: 32.5975, Lng: -90.0317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Canton, Indiana 38.6239 -86.0347 matched with DB +City: Canton, state: Massachusetts, Lat: 42.175, Lng: -71.1264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Kansas 37.1564 -95.5977 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Kansas 37.1564 -95.5977 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mendota, Virginia 36.7102 -82.3048 matched with DB +City: Mendota, state: California, Lat: 36.7555, Lng: -120.3776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Forestville, Michigan 43.6599 -82.6126 matched with DB +City: Forestville, state: Maryland, Lat: 38.8518, Lng: -76.8708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Forestville, Michigan 43.6599 -82.6126 matched with DB +City: Forestville, state: Ohio, Lat: 39.0711, Lng: -84.3389, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron, Tennessee 35.5935 -88.5361 matched with DB +City: Huron, state: South Dakota, Lat: 44.3623, Lng: -98.2094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Oklahoma 34.9937 -94.5156 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Markham, Washington 46.9150 -123.9823 matched with DB +City: Markham, state: Illinois, Lat: 41.6, Lng: -87.6904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olney, Montana 48.5489 -114.5721 matched with DB +City: Olney, state: Maryland, Lat: 39.1465, Lng: -77.0715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Olney, Montana 48.5489 -114.5721 matched with DB +City: Olney, state: Illinois, Lat: 38.7285, Lng: -88.0839, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Highland, Ohio 39.3440 -83.6001 matched with DB +City: Highland, state: Illinois, Lat: 38.7602, Lng: -89.6812, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Ohio 39.3440 -83.6001 matched with DB +City: Highland, state: Indiana, Lat: 41.5483, Lng: -87.4588, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Ohio 39.3440 -83.6001 matched with DB +City: Highland, state: Utah, Lat: 40.4276, Lng: -111.7957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Highland, Ohio 39.3440 -83.6001 matched with DB +City: Highland, state: California, Lat: 34.1113, Lng: -117.165, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Economy, Indiana 39.9774 -85.0868 matched with DB +City: Economy, state: Pennsylvania, Lat: 40.6411, Lng: -80.1841, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Marys, Iowa 41.3077 -93.7337 matched with DB +City: St. Marys, state: Pennsylvania, Lat: 41.4574, Lng: -78.5342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Marys, Iowa 41.3077 -93.7337 matched with DB +City: St. Marys, state: Georgia, Lat: 30.7567, Lng: -81.5722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Mississippi 34.7078 -89.8075 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Mississippi 34.7078 -89.8075 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Mississippi 34.7078 -89.8075 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Mississippi 34.7078 -89.8075 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentor, Kansas 38.7407 -97.5979 matched with DB +City: Mentor, state: Ohio, Lat: 41.6893, Lng: -81.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tampa, Kansas 38.5481 -97.1542 matched with DB +City: Tampa, state: Florida, Lat: 27.9945, Lng: -82.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Petersburg, North Dakota 48.0132 -98.0004 matched with DB +City: Petersburg, state: Virginia, Lat: 37.2043, Lng: -77.3913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delta, Alabama 33.4470 -85.6746 matched with DB +City: Delta, state: Colorado, Lat: 38.756, Lng: -108.0772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rock Falls, Iowa 43.2071 -93.0870 matched with DB +City: Rock Falls, state: Illinois, Lat: 41.7724, Lng: -89.6928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Logan, Montana 45.8843 -111.4236 matched with DB +City: Logan, state: Utah, Lat: 41.7399, Lng: -111.8422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Logan, Montana 45.8843 -111.4236 matched with DB +City: Logan, state: Pennsylvania, Lat: 40.5263, Lng: -78.4234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frankfort, South Dakota 44.8777 -98.3092 matched with DB +City: Frankfort, state: Indiana, Lat: 40.281, Lng: -86.5212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, South Dakota 44.8777 -98.3092 matched with DB +City: Frankfort, state: Illinois, Lat: 41.4892, Lng: -87.8363, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frankfort, South Dakota 44.8777 -98.3092 matched with DB +City: Frankfort, state: Kentucky, Lat: 38.1924, Lng: -84.8643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerville, Oregon 45.4897 -118.0040 matched with DB +City: Summerville, state: South Carolina, Lat: 33.0016, Lng: -80.1799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Nebraska 40.6991 -99.2544 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Montana 47.3857 -114.7989 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monument, New Mexico 32.6243 -103.2776 matched with DB +City: Monument, state: Colorado, Lat: 39.0736, Lng: -104.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, Iowa 42.2455 -93.3954 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Iowa 42.2455 -93.3954 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Iowa 42.2455 -93.3954 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Iowa 42.2455 -93.3954 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Iowa 42.2455 -93.3954 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, Iowa 42.2455 -93.3954 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Washington 48.0012 -117.5610 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Washington 48.0012 -117.5610 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Washington 48.0012 -117.5610 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Washington 48.0012 -117.5610 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Washington 48.0012 -117.5610 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Iowa 40.6668 -91.5118 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutland, Iowa 42.7614 -94.2952 matched with DB +City: Rutland, state: Vermont, Lat: 43.6092, Lng: -72.9783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rutland, Iowa 42.7614 -94.2952 matched with DB +City: Rutland, state: Massachusetts, Lat: 42.3848, Lng: -71.9673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Omaha, Arkansas 36.4583 -93.1910 matched with DB +City: Omaha, state: Nebraska, Lat: 41.2627, Lng: -96.0529, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alden, Kansas 38.2444 -98.3118 matched with DB +City: Alden, state: New York, Lat: 42.9114, Lng: -78.5211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethel, Missouri 39.8779 -92.0221 matched with DB +City: Bethel, state: Pennsylvania, Lat: 39.8458, Lng: -75.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Iowa 41.0252 -95.4947 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Iowa 41.0252 -95.4947 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Iowa 41.0252 -95.4947 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Palmer, Iowa 42.6301 -94.5985 matched with DB +City: Palmer, state: Massachusetts, Lat: 42.1888, Lng: -72.3112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Palmer, Iowa 42.6301 -94.5985 matched with DB +City: Palmer, state: Pennsylvania, Lat: 40.7007, Lng: -75.2628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Geneva, Pennsylvania 41.5620 -80.2261 matched with DB +City: Geneva, state: New York, Lat: 42.8645, Lng: -76.9826, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Geneva, Pennsylvania 41.5620 -80.2261 matched with DB +City: Geneva, state: Illinois, Lat: 41.8833, Lng: -88.3242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, Georgia 33.2198 -82.7032 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Nebraska 40.5760 -96.7060 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Nebraska 40.5760 -96.7060 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Nebraska 40.5760 -96.7060 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Montana 46.5259 -112.8205 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bismarck, Arkansas 34.3178 -93.1780 matched with DB +City: Bismarck, state: North Dakota, Lat: 46.8143, Lng: -100.7694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Missouri 37.9774 -93.8138 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Missouri 39.1942 -93.6896 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Missouri 39.1942 -93.6896 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Missouri 39.1942 -93.6896 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Missouri 39.1942 -93.6896 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Missouri 39.1942 -93.6896 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Upland, Nebraska 40.3195 -98.9023 matched with DB +City: Upland, state: California, Lat: 34.1178, Lng: -117.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Arkansas 36.0518 -93.5150 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Arkansas 36.0518 -93.5150 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Arkansas 36.0518 -93.5150 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkton, Minnesota 43.6602 -92.7065 matched with DB +City: Elkton, state: Maryland, Lat: 39.6066, Lng: -75.8209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, Iowa 41.7612 -91.8711 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Linden, North Carolina 35.2546 -78.7484 matched with DB +City: Linden, state: New Jersey, Lat: 40.6251, Lng: -74.2383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Augustine, Illinois 40.7213 -90.4069 matched with DB +City: St. Augustine, state: Florida, Lat: 29.8976, Lng: -81.31, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilson, Ohio 39.8598 -81.0689 matched with DB +City: Wilson, state: North Carolina, Lat: 35.7311, Lng: -77.9284, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillview, Illinois 39.4496 -90.5386 matched with DB +City: Hillview, state: Kentucky, Lat: 38.0562, Lng: -85.6847, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elizabeth, Indiana 38.1241 -85.9737 matched with DB +City: Elizabeth, state: New Jersey, Lat: 40.6658, Lng: -74.1913, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Republic, Kansas 39.9239 -97.8245 matched with DB +City: Republic, state: Missouri, Lat: 37.1452, Lng: -93.4446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Oklahoma 35.5476 -98.3775 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Oklahoma 35.5476 -98.3775 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sparks, Oklahoma 35.6113 -96.8191 matched with DB +City: Sparks, state: Nevada, Lat: 39.5736, Lng: -119.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Nebraska 40.3684 -99.4732 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centralia, Iowa 42.4723 -90.8362 matched with DB +City: Centralia, state: Illinois, Lat: 38.5224, Lng: -89.1232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centralia, Iowa 42.4723 -90.8362 matched with DB +City: Centralia, state: Washington, Lat: 46.7223, Lng: -122.9696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New London, Indiana 40.4434 -86.2714 matched with DB +City: New London, state: Connecticut, Lat: 41.3502, Lng: -72.1022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairmont, Oklahoma 36.3560 -97.7055 matched with DB +City: Fairmont, state: West Virginia, Lat: 39.4768, Lng: -80.1491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairmont, Oklahoma 36.3560 -97.7055 matched with DB +City: Fairmont, state: Minnesota, Lat: 43.6441, Lng: -94.4621, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Haysville, Pennsylvania 40.5268 -80.1561 matched with DB +City: Haysville, state: Kansas, Lat: 37.5648, Lng: -97.3527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eden, Indiana 39.9038 -85.7694 matched with DB +City: Eden, state: North Carolina, Lat: 36.5027, Lng: -79.7412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fraser, Iowa 42.1242 -93.9699 matched with DB +City: Fraser, state: Michigan, Lat: 42.5388, Lng: -82.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Pennsylvania 41.4360 -79.9592 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Arkansas 35.8246 -93.7641 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, Kansas 37.3247 -95.7153 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waynesville, Indiana 39.1151 -85.8917 matched with DB +City: Waynesville, state: North Carolina, Lat: 35.4854, Lng: -82.9996, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Idaho 42.1116 -111.3903 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Idaho 42.1116 -111.3903 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burbank, Oklahoma 36.6964 -96.7293 matched with DB +City: Burbank, state: Illinois, Lat: 41.7444, Lng: -87.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burbank, Oklahoma 36.6964 -96.7293 matched with DB +City: Burbank, state: California, Lat: 34.1879, Lng: -118.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Merrifield, Minnesota 46.4673 -94.1746 matched with DB +City: Merrifield, state: Virginia, Lat: 38.8731, Lng: -77.2426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Providence, Alabama 32.3424 -87.7761 matched with DB +City: Providence, state: Rhode Island, Lat: 41.823, Lng: -71.4187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Kansas 39.4678 -98.9486 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Kansas 39.4678 -98.9486 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chula Vista, Texas 26.0739 -97.4397 matched with DB +City: Chula Vista, state: California, Lat: 32.6281, Lng: -117.0144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andover, Iowa 41.9801 -90.2528 matched with DB +City: Andover, state: Minnesota, Lat: 45.2571, Lng: -93.3265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Iowa 41.9801 -90.2528 matched with DB +City: Andover, state: Kansas, Lat: 37.6873, Lng: -97.1352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, Iowa 41.9801 -90.2528 matched with DB +City: Andover, state: Massachusetts, Lat: 42.6466, Lng: -71.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pontiac, Missouri 36.5165 -92.6037 matched with DB +City: Pontiac, state: Michigan, Lat: 42.6493, Lng: -83.2878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pontiac, Missouri 36.5165 -92.6037 matched with DB +City: Pontiac, state: Illinois, Lat: 40.8894, Lng: -88.6409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunbury, North Carolina 36.4469 -76.6127 matched with DB +City: Sunbury, state: Pennsylvania, Lat: 40.8616, Lng: -76.7871, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marion, North Dakota 46.6091 -98.3375 matched with DB +City: Marion, state: Iowa, Lat: 42.0451, Lng: -91.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Dakota 46.6091 -98.3375 matched with DB +City: Marion, state: Ohio, Lat: 40.5973, Lng: -83.1227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Dakota 46.6091 -98.3375 matched with DB +City: Marion, state: Illinois, Lat: 37.7345, Lng: -88.942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Dakota 46.6091 -98.3375 matched with DB +City: Marion, state: Indiana, Lat: 40.5497, Lng: -85.6604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marion, North Dakota 46.6091 -98.3375 matched with DB +City: Marion, state: Arkansas, Lat: 35.2035, Lng: -90.2059, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Arkansas 33.1585 -92.4453 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Arkansas 33.1585 -92.4453 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Arkansas 33.1585 -92.4453 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tustin, Wisconsin 44.1698 -88.8960 matched with DB +City: Tustin, state: California, Lat: 33.7311, Lng: -117.8107, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cleveland, North Dakota 46.8910 -99.1195 matched with DB +City: Cleveland, state: Ohio, Lat: 41.4764, Lng: -81.6805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, North Dakota 46.8910 -99.1195 matched with DB +City: Cleveland, state: Tennessee, Lat: 35.1817, Lng: -84.8707, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cleveland, North Dakota 46.8910 -99.1195 matched with DB +City: Cleveland, state: Mississippi, Lat: 33.744, Lng: -90.7285, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Davis, South Dakota 43.2595 -96.9945 matched with DB +City: Davis, state: California, Lat: 38.5553, Lng: -121.737, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Templeton, Virginia 37.0811 -77.3563 matched with DB +City: Templeton, state: California, Lat: 35.556, Lng: -120.7181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bristol, Georgia 31.4507 -82.2148 matched with DB +City: Bristol, state: Pennsylvania, Lat: 40.1216, Lng: -74.8667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Georgia 31.4507 -82.2148 matched with DB +City: Bristol, state: Virginia, Lat: 36.6181, Lng: -82.1604, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Georgia 31.4507 -82.2148 matched with DB +City: Bristol, state: Connecticut, Lat: 41.6812, Lng: -72.9407, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Georgia 31.4507 -82.2148 matched with DB +City: Bristol, state: Tennessee, Lat: 36.5572, Lng: -82.2154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bristol, Georgia 31.4507 -82.2148 matched with DB +City: Bristol, state: Rhode Island, Lat: 41.6827, Lng: -71.2694, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Verona, North Dakota 46.3626 -98.0771 matched with DB +City: Verona, state: Wisconsin, Lat: 42.9892, Lng: -89.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Verona, North Dakota 46.3626 -98.0771 matched with DB +City: Verona, state: New Jersey, Lat: 40.8323, Lng: -74.2431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Oklahoma 34.0061 -97.1240 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vincent, Iowa 42.5917 -94.0198 matched with DB +City: Vincent, state: California, Lat: 34.0983, Lng: -117.9238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lincoln, Iowa 42.2627 -92.6923 matched with DB +City: Lincoln, state: Nebraska, Lat: 40.8099, Lng: -96.6784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Iowa 42.2627 -92.6923 matched with DB +City: Lincoln, state: Illinois, Lat: 40.1508, Lng: -89.372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Iowa 42.2627 -92.6923 matched with DB +City: Lincoln, state: California, Lat: 38.8774, Lng: -121.2937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lincoln, Iowa 42.2627 -92.6923 matched with DB +City: Lincoln, state: Rhode Island, Lat: 41.9171, Lng: -71.4505, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Appleton, Arkansas 35.4185 -92.8724 matched with DB +City: Appleton, state: Wisconsin, Lat: 44.278, Lng: -88.3892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Birmingham, Ohio 41.3302 -82.3617 matched with DB +City: Birmingham, state: Michigan, Lat: 42.5446, Lng: -83.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Birmingham, Ohio 41.3302 -82.3617 matched with DB +City: Birmingham, state: Alabama, Lat: 33.5279, Lng: -86.7971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Colorado 38.0892 -107.6952 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Colorado 38.0892 -107.6952 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Colorado 38.0892 -107.6952 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Colorado 38.0892 -107.6952 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Illinois 39.8198 -91.0274 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Illinois 39.8198 -91.0274 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Illinois 39.8198 -91.0274 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tarrytown, Georgia 32.3187 -82.5595 matched with DB +City: Tarrytown, state: New York, Lat: 41.0647, Lng: -73.8672, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greensburg, Maryland 39.6806 -77.5615 matched with DB +City: Greensburg, state: Pennsylvania, Lat: 40.3113, Lng: -79.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greensburg, Maryland 39.6806 -77.5615 matched with DB +City: Greensburg, state: Indiana, Lat: 39.3518, Lng: -85.5028, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenfield, Oklahoma 35.7290 -98.3775 matched with DB +City: Greenfield, state: Wisconsin, Lat: 42.9619, Lng: -88.0052, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Oklahoma 35.7290 -98.3775 matched with DB +City: Greenfield, state: Indiana, Lat: 39.7937, Lng: -85.7738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenfield, Oklahoma 35.7290 -98.3775 matched with DB +City: Greenfield, state: California, Lat: 36.3242, Lng: -121.2428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Herndon, Kansas 39.9092 -100.7865 matched with DB +City: Herndon, state: Virginia, Lat: 38.9699, Lng: -77.3867, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, California 39.3591 -120.7905 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Kentucky 36.8426 -87.3055 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartland, Illinois 42.3631 -88.5086 matched with DB +City: Hartland, state: Wisconsin, Lat: 43.1029, Lng: -88.3396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manor, Georgia 31.1044 -82.5665 matched with DB +City: Manor, state: Texas, Lat: 30.3562, Lng: -97.5227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manor, Georgia 31.1044 -82.5665 matched with DB +City: Manor, state: Pennsylvania, Lat: 39.9848, Lng: -76.4216, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laredo, Missouri 40.0260 -93.4480 matched with DB +City: Laredo, state: Texas, Lat: 27.5625, Lng: -99.4874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Hills, Iowa 40.7586 -91.1463 matched with DB +City: Oak Hills, state: Oregon, Lat: 45.5405, Lng: -122.8413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ithaca, Ohio 39.9378 -84.5533 matched with DB +City: Ithaca, state: New York, Lat: 42.4442, Lng: -76.5032, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kilgore, Nebraska 42.9391 -100.9573 matched with DB +City: Kilgore, state: Texas, Lat: 32.398, Lng: -94.8602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chatham, Michigan 46.3441 -86.9313 matched with DB +City: Chatham, state: New Jersey, Lat: 40.7274, Lng: -74.4289, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chatham, Michigan 46.3441 -86.9313 matched with DB +City: Chatham, state: Illinois, Lat: 39.6733, Lng: -89.6934, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Indiana 40.8984 -85.7928 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Indiana 40.8984 -85.7928 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Indiana 40.8984 -85.7928 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyndon, Vermont 44.5154 -72.0134 matched with DB +City: Lyndon, state: Kentucky, Lat: 38.2645, Lng: -85.5891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hickory, Kentucky 36.8174 -88.6485 matched with DB +City: Hickory, state: North Carolina, Lat: 35.741, Lng: -81.3223, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Exeter, Illinois 39.7191 -90.4961 matched with DB +City: Exeter, state: California, Lat: 36.2941, Lng: -119.1459, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Illinois 39.7191 -90.4961 matched with DB +City: Exeter, state: New Hampshire, Lat: 42.9901, Lng: -70.9646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Exeter, Illinois 39.7191 -90.4961 matched with DB +City: Exeter, state: Pennsylvania, Lat: 40.3139, Lng: -75.834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fort Smith, Montana 45.3134 -107.9296 matched with DB +City: Fort Smith, state: Arkansas, Lat: 35.3495, Lng: -94.3695, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montrose, Mississippi 32.1257 -89.2344 matched with DB +City: Montrose, state: Colorado, Lat: 38.4689, Lng: -107.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Ohio 39.2772 -84.7440 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Ohio 39.2772 -84.7440 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, Louisiana 32.3397 -93.2065 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, Louisiana 32.3397 -93.2065 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutherford, California 38.4568 -122.4231 matched with DB +City: Rutherford, state: New Jersey, Lat: 40.8203, Lng: -74.1057, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hutchinson, New Jersey 40.7800 -75.1204 matched with DB +City: Hutchinson, state: Kansas, Lat: 38.0671, Lng: -97.9081, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hutchinson, New Jersey 40.7800 -75.1204 matched with DB +City: Hutchinson, state: Minnesota, Lat: 44.8855, Lng: -94.3768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Montana 47.8643 -114.2765 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Montana 47.8643 -114.2765 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Montana 47.8643 -114.2765 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galt, Illinois 41.7894 -89.7541 matched with DB +City: Galt, state: California, Lat: 38.2698, Lng: -121.3004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yuma, Tennessee 35.8438 -88.3372 matched with DB +City: Yuma, state: Arizona, Lat: 32.5995, Lng: -114.5491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Oklahoma 33.8769 -96.1600 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Oklahoma 33.8769 -96.1600 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Oklahoma 33.8769 -96.1600 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Oklahoma 33.8769 -96.1600 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Ohio 41.5108 -84.5079 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Griffin, Indiana 38.2043 -87.9150 matched with DB +City: Griffin, state: Georgia, Lat: 33.2418, Lng: -84.2748, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, South Carolina 32.6024 -80.1935 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Kansas 38.6427 -100.1698 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakley, Wyoming 41.7510 -110.5261 matched with DB +City: Oakley, state: California, Lat: 37.9929, Lng: -121.6952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Washington 45.7540 -120.9080 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Washington 45.7540 -120.9080 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, South Dakota 43.7273 -97.5911 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, South Dakota 43.7273 -97.5911 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glencoe, Ohio 40.0106 -80.8815 matched with DB +City: Glencoe, state: Illinois, Lat: 42.1347, Lng: -87.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edmond, Kansas 39.6272 -99.8199 matched with DB +City: Edmond, state: Oklahoma, Lat: 35.6689, Lng: -97.416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, North Dakota 48.4202 -98.0737 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Arkansas 35.6623 -91.8507 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Arkansas 35.6623 -91.8507 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Arkansas 35.6623 -91.8507 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Arkansas 35.6623 -91.8507 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Arkansas 35.6623 -91.8507 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Arkansas 35.6623 -91.8507 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Olean, Missouri 38.4103 -92.5300 matched with DB +City: Olean, state: New York, Lat: 42.0819, Lng: -78.4321, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alden, Michigan 44.8792 -85.2729 matched with DB +City: Alden, state: New York, Lat: 42.9114, Lng: -78.5211, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgewater, Iowa 41.2471 -94.6689 matched with DB +City: Bridgewater, state: Massachusetts, Lat: 41.9728, Lng: -70.9749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgewater, Iowa 41.2471 -94.6689 matched with DB +City: Bridgewater, state: New Jersey, Lat: 40.5934, Lng: -74.6076, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webster, Pennsylvania 40.1878 -79.8489 matched with DB +City: Webster, state: New York, Lat: 43.2294, Lng: -77.4454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Pennsylvania 40.1878 -79.8489 matched with DB +City: Webster, state: Texas, Lat: 29.5317, Lng: -95.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Webster, Pennsylvania 40.1878 -79.8489 matched with DB +City: Webster, state: Massachusetts, Lat: 42.0521, Lng: -71.8485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Libertyville, Alabama 31.2428 -86.4600 matched with DB +City: Libertyville, state: Illinois, Lat: 42.287, Lng: -87.967, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burton, Illinois 39.9079 -91.2492 matched with DB +City: Burton, state: Michigan, Lat: 42.9974, Lng: -83.6175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marathon, Ohio 39.1453 -84.0063 matched with DB +City: Marathon, state: Florida, Lat: 24.7263, Lng: -81.0374, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hanover, Virginia 37.7668 -77.3707 matched with DB +City: Hanover, state: Pennsylvania, Lat: 39.8118, Lng: -76.9836, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Virginia 37.7668 -77.3707 matched with DB +City: Hanover, state: Massachusetts, Lat: 42.1224, Lng: -70.8566, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Virginia 37.7668 -77.3707 matched with DB +City: Hanover, state: New Hampshire, Lat: 43.7156, Lng: -72.191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Virginia 37.7668 -77.3707 matched with DB +City: Hanover, state: New Jersey, Lat: 40.8197, Lng: -74.4287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Virginia 37.7668 -77.3707 matched with DB +City: Hanover, state: Pennsylvania, Lat: 41.2012, Lng: -75.929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hanover, Virginia 37.7668 -77.3707 matched with DB +City: Hanover, state: Pennsylvania, Lat: 40.6668, Lng: -75.3979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartow, West Virginia 38.5422 -79.7859 matched with DB +City: Bartow, state: Florida, Lat: 27.8868, Lng: -81.8214, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Farmington, California 37.9299 -121.0044 matched with DB +City: Farmington, state: Michigan, Lat: 42.4614, Lng: -83.3784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, California 37.9299 -121.0044 matched with DB +City: Farmington, state: Minnesota, Lat: 44.6572, Lng: -93.1687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, California 37.9299 -121.0044 matched with DB +City: Farmington, state: Missouri, Lat: 37.7822, Lng: -90.4282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, California 37.9299 -121.0044 matched with DB +City: Farmington, state: Utah, Lat: 40.9845, Lng: -111.9065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, California 37.9299 -121.0044 matched with DB +City: Farmington, state: New Mexico, Lat: 36.7555, Lng: -108.1823, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Farmington, California 37.9299 -121.0044 matched with DB +City: Farmington, state: New York, Lat: 42.9895, Lng: -77.3087, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Othello, New Jersey 39.4114 -75.3426 matched with DB +City: Othello, state: Washington, Lat: 46.8221, Lng: -119.1653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Kansas 37.2498 -98.4177 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Kansas 37.2498 -98.4177 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Derby, Iowa 40.9303 -93.4565 matched with DB +City: Derby, state: Connecticut, Lat: 41.3265, Lng: -73.0833, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Iowa 40.9303 -93.4565 matched with DB +City: Derby, state: Kansas, Lat: 37.5571, Lng: -97.2551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Derby, Iowa 40.9303 -93.4565 matched with DB +City: Derby, state: Colorado, Lat: 39.84, Lng: -104.9172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Van Wert, Iowa 40.8709 -93.7920 matched with DB +City: Van Wert, state: Ohio, Lat: 40.8651, Lng: -84.5879, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, North Carolina 34.3683 -79.1249 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, North Carolina 34.3683 -79.1249 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, Iowa 41.1788 -92.2519 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pensacola, Oklahoma 36.4593 -95.1277 matched with DB +City: Pensacola, state: Florida, Lat: 30.4413, Lng: -87.1911, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomington, Nebraska 40.0938 -99.0384 matched with DB +City: Bloomington, state: Minnesota, Lat: 44.8306, Lng: -93.3151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Nebraska 40.0938 -99.0384 matched with DB +City: Bloomington, state: Illinois, Lat: 40.4757, Lng: -88.9703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Nebraska 40.0938 -99.0384 matched with DB +City: Bloomington, state: Indiana, Lat: 39.1637, Lng: -86.5257, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomington, Nebraska 40.0938 -99.0384 matched with DB +City: Bloomington, state: California, Lat: 34.0601, Lng: -117.4013, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaver Dam, Indiana 41.0937 -85.9757 matched with DB +City: Beaver Dam, state: Wisconsin, Lat: 43.4688, Lng: -88.8309, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meriden, Iowa 42.7946 -95.6341 matched with DB +City: Meriden, state: Connecticut, Lat: 41.5369, Lng: -72.7946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winslow, Nebraska 41.6102 -96.5047 matched with DB +City: Winslow, state: Arizona, Lat: 35.0243, Lng: -110.7095, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winslow, Nebraska 41.6102 -96.5047 matched with DB +City: Winslow, state: New Jersey, Lat: 39.7027, Lng: -74.9029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hastings, Oklahoma 34.2243 -98.1088 matched with DB +City: Hastings, state: Nebraska, Lat: 40.5961, Lng: -98.39, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Oklahoma 34.2243 -98.1088 matched with DB +City: Hastings, state: Minnesota, Lat: 44.7318, Lng: -92.8538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hastings, Oklahoma 34.2243 -98.1088 matched with DB +City: Hastings, state: New York, Lat: 43.3215, Lng: -76.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galloway, West Virginia 39.2339 -80.1277 matched with DB +City: Galloway, state: New Jersey, Lat: 39.4914, Lng: -74.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wright, Minnesota 46.6725 -93.0069 matched with DB +City: Wright, state: Florida, Lat: 30.4445, Lng: -86.6419, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, Kansas 38.2780 -98.4143 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Covington, Michigan 46.5388 -88.5522 matched with DB +City: Covington, state: Kentucky, Lat: 39.0334, Lng: -84.5166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Michigan 46.5388 -88.5522 matched with DB +City: Covington, state: Tennessee, Lat: 35.566, Lng: -89.6482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Michigan 46.5388 -88.5522 matched with DB +City: Covington, state: Georgia, Lat: 33.6049, Lng: -83.8463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Michigan 46.5388 -88.5522 matched with DB +City: Covington, state: Louisiana, Lat: 30.481, Lng: -90.1122, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Covington, Michigan 46.5388 -88.5522 matched with DB +City: Covington, state: Washington, Lat: 47.3667, Lng: -122.1045, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Ohio 40.7427 -84.4762 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Ohio 40.7427 -84.4762 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Knoxville, Georgia 32.7233 -83.9959 matched with DB +City: Knoxville, state: Tennessee, Lat: 35.9692, Lng: -83.9496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, Illinois 39.7569 -89.9024 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlanta, Kansas 37.4358 -96.7670 matched with DB +City: Atlanta, state: Georgia, Lat: 33.7628, Lng: -84.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rantoul, Kansas 38.5483 -95.1011 matched with DB +City: Rantoul, state: Illinois, Lat: 40.3031, Lng: -88.1549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hingham, Montana 48.5554 -110.4213 matched with DB +City: Hingham, state: Massachusetts, Lat: 42.2176, Lng: -70.8854, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adrian, West Virginia 38.9069 -80.2729 matched with DB +City: Adrian, state: Michigan, Lat: 41.8994, Lng: -84.0447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winton, Minnesota 47.9284 -91.8005 matched with DB +City: Winton, state: California, Lat: 37.3854, Lng: -120.6173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dover, Illinois 41.4340 -89.3961 matched with DB +City: Dover, state: Pennsylvania, Lat: 40.0019, Lng: -76.8698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Illinois 41.4340 -89.3961 matched with DB +City: Dover, state: New Hampshire, Lat: 43.1887, Lng: -70.8845, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Illinois 41.4340 -89.3961 matched with DB +City: Dover, state: New Jersey, Lat: 40.8859, Lng: -74.5597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Illinois 41.4340 -89.3961 matched with DB +City: Dover, state: Delaware, Lat: 39.161, Lng: -75.5202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dover, Illinois 41.4340 -89.3961 matched with DB +City: Dover, state: Ohio, Lat: 40.5304, Lng: -81.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean City, Washington 47.0763 -124.1619 matched with DB +City: Ocean City, state: New Jersey, Lat: 39.2681, Lng: -74.602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vienna, South Dakota 44.7031 -97.5000 matched with DB +City: Vienna, state: Virginia, Lat: 38.8996, Lng: -77.2597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vienna, South Dakota 44.7031 -97.5000 matched with DB +City: Vienna, state: West Virginia, Lat: 39.324, Lng: -81.5383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Orlando, Oklahoma 36.1355 -97.3654 matched with DB +City: Orlando, state: Florida, Lat: 28.4773, Lng: -81.337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blue Springs, Alabama 31.6635 -85.5035 matched with DB +City: Blue Springs, state: Missouri, Lat: 39.0124, Lng: -94.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, Illinois 39.9883 -91.1456 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Illinois 39.9883 -91.1456 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Illinois 39.9883 -91.1456 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Illinois 39.9883 -91.1456 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, Illinois 39.9883 -91.1456 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arcadia, Oklahoma 35.6655 -97.3255 matched with DB +City: Arcadia, state: California, Lat: 34.1342, Lng: -118.0373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arcadia, Oklahoma 35.6655 -97.3255 matched with DB +City: Arcadia, state: New York, Lat: 43.087, Lng: -77.0858, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bayport, Florida 28.5468 -82.6456 matched with DB +City: Bayport, state: New York, Lat: 40.7461, Lng: -73.0546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Snyder, Colorado 40.3309 -103.5920 matched with DB +City: Snyder, state: Texas, Lat: 32.7133, Lng: -100.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, New Mexico 32.8159 -104.7371 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Central, Alaska 65.5213 -144.6409 matched with DB +City: Central, state: Louisiana, Lat: 30.5593, Lng: -91.0369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Valley, Arizona 34.9834 -110.0374 matched with DB +City: Sun Valley, state: Nevada, Lat: 39.6104, Lng: -119.777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver City, Nevada 39.2639 -119.6357 matched with DB +City: Silver City, state: New Mexico, Lat: 32.7783, Lng: -108.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winterville, Mississippi 33.5024 -91.0603 matched with DB +City: Winterville, state: North Carolina, Lat: 35.5291, Lng: -77.4, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green, Kansas 39.4301 -96.9999 matched with DB +City: Green, state: Ohio, Lat: 40.9483, Lng: -81.4757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peoria, Oklahoma 36.9156 -94.6696 matched with DB +City: Peoria, state: Illinois, Lat: 40.752, Lng: -89.6154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peoria, Oklahoma 36.9156 -94.6696 matched with DB +City: Peoria, state: Arizona, Lat: 33.7843, Lng: -112.2989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Powell, Texas 32.1128 -96.3236 matched with DB +City: Powell, state: Ohio, Lat: 40.1689, Lng: -83.0829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Powell, Texas 32.1128 -96.3236 matched with DB +City: Powell, state: Tennessee, Lat: 36.0358, Lng: -84.0296, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Minnesota 45.4323 -94.6364 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterloo, Alabama 34.9173 -88.0654 matched with DB +City: Waterloo, state: Iowa, Lat: 42.4918, Lng: -92.3522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterloo, Alabama 34.9173 -88.0654 matched with DB +City: Waterloo, state: Illinois, Lat: 38.3403, Lng: -90.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norcross, Minnesota 45.8687 -96.1964 matched with DB +City: Norcross, state: Georgia, Lat: 33.9379, Lng: -84.2065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dallas, South Dakota 43.2379 -99.5175 matched with DB +City: Dallas, state: Pennsylvania, Lat: 41.3608, Lng: -75.9656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, South Dakota 43.2379 -99.5175 matched with DB +City: Dallas, state: Georgia, Lat: 33.9152, Lng: -84.8416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, South Dakota 43.2379 -99.5175 matched with DB +City: Dallas, state: Oregon, Lat: 44.9221, Lng: -123.313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dallas, South Dakota 43.2379 -99.5175 matched with DB +City: Dallas, state: Texas, Lat: 32.7935, Lng: -96.7667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monterey, Kentucky 38.4233 -84.8728 matched with DB +City: Monterey, state: California, Lat: 36.5919, Lng: -121.8808, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lowell, Iowa 40.8343 -91.4387 matched with DB +City: Lowell, state: Massachusetts, Lat: 42.6389, Lng: -71.3217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Iowa 40.8343 -91.4387 matched with DB +City: Lowell, state: Indiana, Lat: 41.2917, Lng: -87.4195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lowell, Iowa 40.8343 -91.4387 matched with DB +City: Lowell, state: Arkansas, Lat: 36.2561, Lng: -94.1532, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Georgia 31.8125 -82.9790 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Georgia 31.8125 -82.9790 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Georgia 31.8125 -82.9790 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Georgia 31.8125 -82.9790 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Georgia 31.8125 -82.9790 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Georgia 31.8125 -82.9790 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eureka, Michigan 43.1036 -84.5136 matched with DB +City: Eureka, state: Missouri, Lat: 38.5004, Lng: -90.6491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Eureka, Michigan 43.1036 -84.5136 matched with DB +City: Eureka, state: California, Lat: 40.7943, Lng: -124.1564, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Texas 33.1735 -94.5425 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Texas 33.1735 -94.5425 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Des Moines, New Mexico 36.7614 -103.8342 matched with DB +City: Des Moines, state: Iowa, Lat: 41.5725, Lng: -93.6105, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Des Moines, New Mexico 36.7614 -103.8342 matched with DB +City: Des Moines, state: Washington, Lat: 47.3914, Lng: -122.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ferguson, Iowa 41.9386 -92.8629 matched with DB +City: Ferguson, state: Missouri, Lat: 38.749, Lng: -90.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ferguson, Iowa 41.9386 -92.8629 matched with DB +City: Ferguson, state: Pennsylvania, Lat: 40.7432, Lng: -77.9403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zion, South Carolina 34.2587 -79.3116 matched with DB +City: Zion, state: Illinois, Lat: 42.4603, Lng: -87.8511, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Friendly, West Virginia 39.5137 -81.0618 matched with DB +City: Friendly, state: Maryland, Lat: 38.7601, Lng: -76.9642, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Arizona 33.3346 -112.7747 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Arizona 33.3346 -112.7747 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Arizona 33.3346 -112.7747 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Arizona 33.3346 -112.7747 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Arizona 33.3346 -112.7747 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit, Oregon 44.7338 -122.1513 matched with DB +City: Detroit, state: Michigan, Lat: 42.3834, Lng: -83.1024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Littleton, Illinois 40.2340 -90.6223 matched with DB +City: Littleton, state: Colorado, Lat: 39.5915, Lng: -105.0188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Littleton, Illinois 40.2340 -90.6223 matched with DB +City: Littleton, state: Massachusetts, Lat: 42.535, Lng: -71.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Texas 35.7026 -101.5319 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Texas 35.7026 -101.5319 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Texas 35.7026 -101.5319 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, Oklahoma 34.5540 -96.2038 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverton, Nebraska 40.0897 -98.7597 matched with DB +City: Riverton, state: Wyoming, Lat: 43.0421, Lng: -108.4144, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverton, Nebraska 40.0897 -98.7597 matched with DB +City: Riverton, state: Utah, Lat: 40.5176, Lng: -111.9636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winthrop, Arkansas 33.8308 -94.3542 matched with DB +City: Winthrop, state: Massachusetts, Lat: 42.3761, Lng: -70.9846, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hudson, Kansas 38.1049 -98.6609 matched with DB +City: Hudson, state: Wisconsin, Lat: 44.9639, Lng: -92.7312, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Kansas 38.1049 -98.6609 matched with DB +City: Hudson, state: Ohio, Lat: 41.2399, Lng: -81.4408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Kansas 38.1049 -98.6609 matched with DB +City: Hudson, state: Florida, Lat: 28.3595, Lng: -82.6894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Kansas 38.1049 -98.6609 matched with DB +City: Hudson, state: Massachusetts, Lat: 42.3887, Lng: -71.5465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hudson, Kansas 38.1049 -98.6609 matched with DB +City: Hudson, state: New Hampshire, Lat: 42.7639, Lng: -71.4072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Utah 40.4108 -111.2958 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Utah 40.4108 -111.2958 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Utah 40.4108 -111.2958 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Utah 40.4108 -111.2958 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, Indiana 40.5956 -85.2594 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Arkansas 33.7730 -93.6833 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Nebraska 40.2475 -97.3878 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Nebraska 40.2475 -97.3878 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Nebraska 40.2475 -97.3878 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Nebraska 40.2475 -97.3878 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Michigan 42.8098 -84.7909 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Eagle, Alaska 64.7813 -141.1979 matched with DB +City: Eagle, state: Idaho, Lat: 43.7223, Lng: -116.3866, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denton, Missouri 36.0905 -89.8915 matched with DB +City: Denton, state: Texas, Lat: 33.2175, Lng: -97.1418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomingdale, Ohio 40.3424 -80.8175 matched with DB +City: Bloomingdale, state: Illinois, Lat: 41.9497, Lng: -88.0895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Ohio 40.3424 -80.8175 matched with DB +City: Bloomingdale, state: Tennessee, Lat: 36.5793, Lng: -82.5096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bloomingdale, Ohio 40.3424 -80.8175 matched with DB +City: Bloomingdale, state: Florida, Lat: 27.8784, Lng: -82.2624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tucker, Arkansas 34.4395 -91.9519 matched with DB +City: Tucker, state: Georgia, Lat: 33.8436, Lng: -84.2024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitewater, Montana 48.7635 -107.6303 matched with DB +City: Whitewater, state: Wisconsin, Lat: 42.8372, Lng: -88.7341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Nebraska 41.1316 -101.5852 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, West Virginia 37.4158 -81.4463 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Montpelier, North Dakota 46.6987 -98.5884 matched with DB +City: Montpelier, state: Vermont, Lat: 44.2659, Lng: -72.5717, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McLean, Nebraska 42.3861 -97.4682 matched with DB +City: McLean, state: Virginia, Lat: 38.9436, Lng: -77.1943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holladay, Tennessee 35.8720 -88.1449 matched with DB +City: Holladay, state: Utah, Lat: 40.66, Lng: -111.8226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warwick, North Dakota 47.8547 -98.7056 matched with DB +City: Warwick, state: Rhode Island, Lat: 41.7062, Lng: -71.4334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, North Dakota 47.8547 -98.7056 matched with DB +City: Warwick, state: New York, Lat: 41.2597, Lng: -74.3614, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, North Dakota 47.8547 -98.7056 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.1558, Lng: -76.2799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warwick, North Dakota 47.8547 -98.7056 matched with DB +City: Warwick, state: Pennsylvania, Lat: 40.2503, Lng: -75.0818, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Minnesota 45.5232 -94.8317 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Minnesota 45.5232 -94.8317 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Illinois 40.0174 -91.3028 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, West Virginia 39.4568 -80.2635 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, West Virginia 39.4568 -80.2635 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cortland, Indiana 38.9731 -85.9641 matched with DB +City: Cortland, state: New York, Lat: 42.6004, Lng: -76.1784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hidalgo, Illinois 39.1559 -88.1491 matched with DB +City: Hidalgo, state: Texas, Lat: 26.109, Lng: -98.2464, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Odessa, Minnesota 45.2622 -96.3335 matched with DB +City: Odessa, state: Texas, Lat: 31.8801, Lng: -102.3448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belvidere, South Dakota 43.8321 -101.2711 matched with DB +City: Belvidere, state: Illinois, Lat: 42.2543, Lng: -88.8649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Niles, Kansas 38.9688 -97.4574 matched with DB +City: Niles, state: Michigan, Lat: 41.8346, Lng: -86.2473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Kansas 38.9688 -97.4574 matched with DB +City: Niles, state: Ohio, Lat: 41.1879, Lng: -80.7531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Niles, Kansas 38.9688 -97.4574 matched with DB +City: Niles, state: Illinois, Lat: 42.0278, Lng: -87.8099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holland, Missouri 36.0571 -89.8705 matched with DB +City: Holland, state: Michigan, Lat: 42.7677, Lng: -86.0984, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Missouri 39.6560 -93.2434 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, Oklahoma 36.8704 -101.0177 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Oklahoma 34.4689 -94.6461 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Oklahoma 34.4689 -94.6461 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithfield, Nebraska 40.5733 -99.7409 matched with DB +City: Smithfield, state: Virginia, Lat: 36.9755, Lng: -76.6152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Nebraska 40.5733 -99.7409 matched with DB +City: Smithfield, state: North Carolina, Lat: 35.5133, Lng: -78.3495, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Nebraska 40.5733 -99.7409 matched with DB +City: Smithfield, state: Utah, Lat: 41.8349, Lng: -111.8265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithfield, Nebraska 40.5733 -99.7409 matched with DB +City: Smithfield, state: Rhode Island, Lat: 41.9014, Lng: -71.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jericho, Arkansas 35.2876 -90.2305 matched with DB +City: Jericho, state: New York, Lat: 40.7875, Lng: -73.5416, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pella, Wisconsin 44.7419 -88.8237 matched with DB +City: Pella, state: Iowa, Lat: 41.4052, Lng: -92.9189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mooresville, Missouri 39.7467 -93.7210 matched with DB +City: Mooresville, state: Indiana, Lat: 39.6022, Lng: -86.3681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mooresville, Missouri 39.7467 -93.7210 matched with DB +City: Mooresville, state: North Carolina, Lat: 35.5847, Lng: -80.8266, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crystal, North Dakota 48.5981 -97.6685 matched with DB +City: Crystal, state: Minnesota, Lat: 45.0377, Lng: -93.3599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garden City, South Dakota 44.9593 -97.5804 matched with DB +City: Garden City, state: Kansas, Lat: 37.9753, Lng: -100.8527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Dakota 44.9593 -97.5804 matched with DB +City: Garden City, state: Michigan, Lat: 42.3244, Lng: -83.3412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Dakota 44.9593 -97.5804 matched with DB +City: Garden City, state: New York, Lat: 40.7266, Lng: -73.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Dakota 44.9593 -97.5804 matched with DB +City: Garden City, state: South Carolina, Lat: 33.5926, Lng: -79.0071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Dakota 44.9593 -97.5804 matched with DB +City: Garden City, state: Georgia, Lat: 32.0867, Lng: -81.1773, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Garden City, South Dakota 44.9593 -97.5804 matched with DB +City: Garden City, state: Idaho, Lat: 43.6526, Lng: -116.2743, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wright, Kansas 37.7753 -99.8905 matched with DB +City: Wright, state: Florida, Lat: 30.4445, Lng: -86.6419, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hope, Idaho 48.2542 -116.3064 matched with DB +City: Hope, state: Arkansas, Lat: 33.6682, Lng: -93.5895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homewood, Pennsylvania 40.8133 -80.3294 matched with DB +City: Homewood, state: Illinois, Lat: 41.5591, Lng: -87.661, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Homewood, Pennsylvania 40.8133 -80.3294 matched with DB +City: Homewood, state: Alabama, Lat: 33.4619, Lng: -86.809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Littleton, West Virginia 39.7024 -80.5147 matched with DB +City: Littleton, state: Colorado, Lat: 39.5915, Lng: -105.0188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Littleton, West Virginia 39.7024 -80.5147 matched with DB +City: Littleton, state: Massachusetts, Lat: 42.535, Lng: -71.4891, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Kansas 38.0098 -94.7197 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Kansas 38.0098 -94.7197 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, Missouri 37.5486 -92.5961 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, Missouri 37.5486 -92.5961 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yarmouth, Iowa 41.0245 -91.3220 matched with DB +City: Yarmouth, state: Maine, Lat: 43.7978, Lng: -70.1719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Yarmouth, Iowa 41.0245 -91.3220 matched with DB +City: Yarmouth, state: Massachusetts, Lat: 41.6756, Lng: -70.2242, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dudley, Missouri 36.7898 -90.0918 matched with DB +City: Dudley, state: Massachusetts, Lat: 42.055, Lng: -71.9352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, South Carolina 33.0362 -81.2223 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, South Dakota 45.0904 -97.6420 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rogers, Nebraska 41.4643 -96.9159 matched with DB +City: Rogers, state: Minnesota, Lat: 45.1865, Lng: -93.5783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rogers, Nebraska 41.4643 -96.9159 matched with DB +City: Rogers, state: Arkansas, Lat: 36.317, Lng: -94.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ramona, Kansas 38.5979 -97.0637 matched with DB +City: Ramona, state: California, Lat: 33.0474, Lng: -116.8766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Moore, Texas 29.0574 -99.0069 matched with DB +City: Moore, state: Oklahoma, Lat: 35.3293, Lng: -97.4757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Moore, Texas 29.0574 -99.0069 matched with DB +City: Moore, state: Pennsylvania, Lat: 40.7798, Lng: -75.422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: New Hampshire, Lat: 43.4499, Lng: -71.6691, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: Wisconsin, Lat: 42.8854, Lng: -88.0104, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: Indiana, Lat: 39.4948, Lng: -86.0544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: Ohio, Lat: 39.5538, Lng: -84.2952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: Kentucky, Lat: 36.7177, Lng: -86.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: Tennessee, Lat: 35.92, Lng: -86.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: Massachusetts, Lat: 42.0862, Lng: -71.4113, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: New Jersey, Lat: 40.4759, Lng: -74.5515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Franklin, Arizona 32.6770 -109.0720 matched with DB +City: Franklin, state: New Jersey, Lat: 39.5954, Lng: -75.019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pearl, Illinois 39.4597 -90.6237 matched with DB +City: Pearl, state: Mississippi, Lat: 32.273, Lng: -90.0918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mooresville, Alabama 34.6257 -86.8802 matched with DB +City: Mooresville, state: Indiana, Lat: 39.6022, Lng: -86.3681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mooresville, Alabama 34.6257 -86.8802 matched with DB +City: Mooresville, state: North Carolina, Lat: 35.5847, Lng: -80.8266, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mitchell, Iowa 43.3202 -92.8710 matched with DB +City: Mitchell, state: South Dakota, Lat: 43.7294, Lng: -98.0337, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, New Mexico 32.9173 -107.7097 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, New Mexico 32.9173 -107.7097 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, New Mexico 32.9173 -107.7097 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Nebraska 41.0946 -96.4332 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Nebraska 41.0946 -96.4332 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethesda, Arkansas 35.7892 -91.7992 matched with DB +City: Bethesda, state: Maryland, Lat: 38.9866, Lng: -77.1188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Craig, Missouri 40.1923 -95.3743 matched with DB +City: Craig, state: Colorado, Lat: 40.5171, Lng: -107.5554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hobbs, Indiana 40.2836 -85.9475 matched with DB +City: Hobbs, state: New Mexico, Lat: 32.7281, Lng: -103.16, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danbury, Wisconsin 46.0088 -92.3777 matched with DB +City: Danbury, state: Connecticut, Lat: 41.4015, Lng: -73.4709, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smithville, Arkansas 36.0799 -91.3027 matched with DB +City: Smithville, state: Missouri, Lat: 39.3919, Lng: -94.5747, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smithville, Arkansas 36.0799 -91.3027 matched with DB +City: Smithville, state: New Jersey, Lat: 39.4929, Lng: -74.4801, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bucyrus, Kansas 38.7237 -94.7140 matched with DB +City: Bucyrus, state: Ohio, Lat: 40.8054, Lng: -82.9719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: South Bend, Nebraska 41.0022 -96.2474 matched with DB +City: South Bend, state: Indiana, Lat: 41.6767, Lng: -86.2696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Valley, Washington 48.1730 -117.7244 matched with DB +City: Valley, state: Alabama, Lat: 32.8088, Lng: -85.181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hilltown, Virginia 36.7290 -80.9822 matched with DB +City: Hilltown, state: Pennsylvania, Lat: 40.3415, Lng: -75.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Winchester, Arkansas 33.7741 -91.4737 matched with DB +City: Winchester, state: Virginia, Lat: 39.1735, Lng: -78.1746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Arkansas 33.7741 -91.4737 matched with DB +City: Winchester, state: Kentucky, Lat: 38.0018, Lng: -84.1908, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Arkansas 33.7741 -91.4737 matched with DB +City: Winchester, state: Tennessee, Lat: 35.1898, Lng: -86.1075, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Arkansas 33.7741 -91.4737 matched with DB +City: Winchester, state: Nevada, Lat: 36.1365, Lng: -115.137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Winchester, Arkansas 33.7741 -91.4737 matched with DB +City: Winchester, state: Massachusetts, Lat: 42.4518, Lng: -71.1463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakland, Arkansas 36.4604 -92.5718 matched with DB +City: Oakland, state: New Jersey, Lat: 41.0313, Lng: -74.2408, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Arkansas 36.4604 -92.5718 matched with DB +City: Oakland, state: Tennessee, Lat: 35.2256, Lng: -89.5372, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakland, Arkansas 36.4604 -92.5718 matched with DB +City: Oakland, state: California, Lat: 37.7904, Lng: -122.2166, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Kansas 39.6806 -100.2933 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Kansas 39.6806 -100.2933 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Iowa 41.3423 -95.7448 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Iowa 41.3423 -95.7448 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Iowa 41.3423 -95.7448 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macon, North Carolina 36.4396 -78.0839 matched with DB +City: Macon, state: Georgia, Lat: 32.8065, Lng: -83.6974, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden Gate, Illinois 38.3589 -88.2046 matched with DB +City: Golden Gate, state: Florida, Lat: 26.1844, Lng: -81.7031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Missouri 39.1991 -94.0234 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Missouri 39.1991 -94.0234 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corona, New Mexico 34.2501 -105.5970 matched with DB +City: Corona, state: California, Lat: 33.8616, Lng: -117.5649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Parker, Washington 46.5021 -120.4668 matched with DB +City: Parker, state: Colorado, Lat: 39.5084, Lng: -104.7753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Parker, Washington 46.5021 -120.4668 matched with DB +City: Parker, state: South Carolina, Lat: 34.8513, Lng: -82.4512, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stafford, Ohio 39.7124 -81.2766 matched with DB +City: Stafford, state: Texas, Lat: 29.6271, Lng: -95.5654, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Stafford, Ohio 39.7124 -81.2766 matched with DB +City: Stafford, state: New Jersey, Lat: 39.7049, Lng: -74.2643, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Needham, Alabama 31.9870 -88.3366 matched with DB +City: Needham, state: Massachusetts, Lat: 42.2814, Lng: -71.2411, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milledgeville, Ohio 39.5932 -83.5878 matched with DB +City: Milledgeville, state: Georgia, Lat: 33.0874, Lng: -83.2414, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Ridge, Louisiana 32.6244 -91.7731 matched with DB +City: Oak Ridge, state: Tennessee, Lat: 35.9639, Lng: -84.2938, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Louisiana 32.6244 -91.7731 matched with DB +City: Oak Ridge, state: Florida, Lat: 28.4727, Lng: -81.4169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Ridge, Louisiana 32.6244 -91.7731 matched with DB +City: Oak Ridge, state: New Jersey, Lat: 41.0323, Lng: -74.4971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Illinois 38.8014 -89.0875 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Illinois 38.8014 -89.0875 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Cruz, Arizona 33.2327 -112.1594 matched with DB +City: Santa Cruz, state: California, Lat: 36.9789, Lng: -122.0346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Townsend, Wisconsin 45.3241 -88.5904 matched with DB +City: Townsend, state: Massachusetts, Lat: 42.6671, Lng: -71.7115, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, South Dakota 43.2221 -96.4876 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Coolidge, Kansas 38.0415 -102.0078 matched with DB +City: Coolidge, state: Arizona, Lat: 32.9363, Lng: -111.5254, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salem, Nebraska 40.0769 -95.7286 matched with DB +City: Salem, state: Massachusetts, Lat: 42.5129, Lng: -70.9021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Nebraska 40.0769 -95.7286 matched with DB +City: Salem, state: Virginia, Lat: 37.2864, Lng: -80.0555, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Nebraska 40.0769 -95.7286 matched with DB +City: Salem, state: Ohio, Lat: 40.9049, Lng: -80.8492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Nebraska 40.0769 -95.7286 matched with DB +City: Salem, state: Oregon, Lat: 44.9233, Lng: -123.0244, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Nebraska 40.0769 -95.7286 matched with DB +City: Salem, state: Utah, Lat: 40.0539, Lng: -111.6718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Salem, Nebraska 40.0769 -95.7286 matched with DB +City: Salem, state: New Hampshire, Lat: 42.7902, Lng: -71.2202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Willowbrook, Kansas 38.1012 -97.9919 matched with DB +City: Willowbrook, state: Illinois, Lat: 41.7641, Lng: -87.9454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Willowbrook, Kansas 38.1012 -97.9919 matched with DB +City: Willowbrook, state: California, Lat: 33.9209, Lng: -118.2356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evergreen, Texas 26.4247 -99.0240 matched with DB +City: Evergreen, state: Montana, Lat: 48.2308, Lng: -114.27, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Evergreen, Texas 26.4247 -99.0240 matched with DB +City: Evergreen, state: Colorado, Lat: 39.6349, Lng: -105.3356, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Anthony, Iowa 42.1235 -93.1975 matched with DB +City: St. Anthony, state: Minnesota, Lat: 45.0278, Lng: -93.2174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westford, New York 42.6511 -74.8005 matched with DB +City: Westford, state: Massachusetts, Lat: 42.5864, Lng: -71.4401, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, North Dakota 47.8579 -101.5018 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, North Dakota 47.8579 -101.5018 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, North Dakota 47.8579 -101.5018 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockport, Illinois 39.5391 -91.0128 matched with DB +City: Rockport, state: Texas, Lat: 28.029, Lng: -97.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edinburg, Missouri 40.0811 -93.6898 matched with DB +City: Edinburg, state: Texas, Lat: 26.3196, Lng: -98.1597, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Grafton, Vermont 43.1706 -72.6084 matched with DB +City: Grafton, state: Wisconsin, Lat: 43.3204, Lng: -87.948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Grafton, Vermont 43.1706 -72.6084 matched with DB +City: Grafton, state: Massachusetts, Lat: 42.2085, Lng: -71.6838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Arkansas 35.3594 -92.9598 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Arkansas 35.3594 -92.9598 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Arkansas 35.3594 -92.9598 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Missouri 39.5877 -92.4728 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Missouri 39.5877 -92.4728 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Missouri 39.5877 -92.4728 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Missouri 39.5877 -92.4728 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Missouri 39.5877 -92.4728 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Missouri 39.5877 -92.4728 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ellisville, Illinois 40.6273 -90.3060 matched with DB +City: Ellisville, state: Missouri, Lat: 38.5897, Lng: -90.5884, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plover, Iowa 42.8766 -94.6223 matched with DB +City: Plover, state: Wisconsin, Lat: 44.4615, Lng: -89.5382, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Englewood, Kansas 37.0405 -99.9876 matched with DB +City: Englewood, state: New Jersey, Lat: 40.8917, Lng: -73.9736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Kansas 37.0405 -99.9876 matched with DB +City: Englewood, state: Ohio, Lat: 39.8643, Lng: -84.307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Kansas 37.0405 -99.9876 matched with DB +City: Englewood, state: Florida, Lat: 26.9717, Lng: -82.3524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Englewood, Kansas 37.0405 -99.9876 matched with DB +City: Englewood, state: Colorado, Lat: 39.6468, Lng: -104.9942, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bradley, California 35.8627 -120.8041 matched with DB +City: Bradley, state: Illinois, Lat: 41.1641, Lng: -87.8452, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Louis, Oklahoma 35.0812 -96.8598 matched with DB +City: St. Louis, state: Missouri, Lat: 38.6359, Lng: -90.2451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Perryville, Alaska 55.9315 -159.1559 matched with DB +City: Perryville, state: Missouri, Lat: 37.7263, Lng: -89.8759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Wyoming 42.6871 -110.9866 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westwood, Iowa 40.9650 -91.6266 matched with DB +City: Westwood, state: New Jersey, Lat: 40.9878, Lng: -74.0308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Iowa 40.9650 -91.6266 matched with DB +City: Westwood, state: Michigan, Lat: 42.3031, Lng: -85.6286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Westwood, Iowa 40.9650 -91.6266 matched with DB +City: Westwood, state: Massachusetts, Lat: 42.2202, Lng: -71.2106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blaine, Kentucky 38.0272 -82.8413 matched with DB +City: Blaine, state: Minnesota, Lat: 45.1696, Lng: -93.2077, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plano, Iowa 40.7555 -93.0469 matched with DB +City: Plano, state: Illinois, Lat: 41.6757, Lng: -88.5293, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plano, Iowa 40.7555 -93.0469 matched with DB +City: Plano, state: Texas, Lat: 33.0502, Lng: -96.7486, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Buckeye, Iowa 42.4195 -93.3758 matched with DB +City: Buckeye, state: Arizona, Lat: 33.4314, Lng: -112.6429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dixon, Nebraska 42.4155 -96.9948 matched with DB +City: Dixon, state: Illinois, Lat: 41.8439, Lng: -89.4794, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dixon, Nebraska 42.4155 -96.9948 matched with DB +City: Dixon, state: California, Lat: 38.4469, Lng: -121.825, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lyons, South Dakota 43.7249 -96.8662 matched with DB +City: Lyons, state: Illinois, Lat: 41.8119, Lng: -87.8191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norwich, Ohio 39.9844 -81.7925 matched with DB +City: Norwich, state: Connecticut, Lat: 41.5495, Lng: -72.0882, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Indiana 40.2976 -85.1962 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camden, Illinois 40.1529 -90.7733 matched with DB +City: Camden, state: New Jersey, Lat: 39.9361, Lng: -75.1073, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Camden, Illinois 40.1529 -90.7733 matched with DB +City: Camden, state: Arkansas, Lat: 33.5672, Lng: -92.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Guilford, Missouri 40.1685 -94.7358 matched with DB +City: Guilford, state: Pennsylvania, Lat: 39.8811, Lng: -77.6012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summit, Oklahoma 35.6694 -95.4208 matched with DB +City: Summit, state: New Jersey, Lat: 40.7154, Lng: -74.3647, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Oklahoma 35.6694 -95.4208 matched with DB +City: Summit, state: Illinois, Lat: 41.7877, Lng: -87.8146, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summit, Oklahoma 35.6694 -95.4208 matched with DB +City: Summit, state: Washington, Lat: 47.1694, Lng: -122.3628, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. George, West Virginia 39.1662 -79.6987 matched with DB +City: St. George, state: Utah, Lat: 37.0758, Lng: -113.5752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, South Dakota 45.6478 -98.4981 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livonia, Indiana 38.5549 -86.2777 matched with DB +City: Livonia, state: Michigan, Lat: 42.3972, Lng: -83.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galesburg, Kansas 37.4721 -95.3563 matched with DB +City: Galesburg, state: Illinois, Lat: 40.9506, Lng: -90.3763, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deer Park, Alabama 31.2198 -88.3226 matched with DB +City: Deer Park, state: New York, Lat: 40.7623, Lng: -73.3218, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Deer Park, Alabama 31.2198 -88.3226 matched with DB +City: Deer Park, state: Texas, Lat: 29.6898, Lng: -95.1151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cornwall, Connecticut 41.8443 -73.3327 matched with DB +City: Cornwall, state: New York, Lat: 41.4195, Lng: -74.054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Center Point, Arkansas 34.0318 -93.9511 matched with DB +City: Center Point, state: Alabama, Lat: 33.6447, Lng: -86.6852, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Longview, Illinois 39.8859 -88.0662 matched with DB +City: Longview, state: Washington, Lat: 46.1461, Lng: -122.963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Longview, Illinois 39.8859 -88.0662 matched with DB +City: Longview, state: Texas, Lat: 32.5193, Lng: -94.7622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rutland, North Dakota 46.0543 -97.5068 matched with DB +City: Rutland, state: Vermont, Lat: 43.6092, Lng: -72.9783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rutland, North Dakota 46.0543 -97.5068 matched with DB +City: Rutland, state: Massachusetts, Lat: 42.3848, Lng: -71.9673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, Iowa 41.1705 -92.9041 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Iowa 41.1705 -92.9041 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Iowa 41.1705 -92.9041 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, Iowa 41.1705 -92.9041 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manassas, Georgia 32.1603 -82.0200 matched with DB +City: Manassas, state: Virginia, Lat: 38.7479, Lng: -77.4838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Washington 48.9938 -118.5068 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Washington 48.9938 -118.5068 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Washington 48.9938 -118.5068 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Washington 48.9938 -118.5068 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Washington 48.9938 -118.5068 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottonwood, South Dakota 43.9657 -101.9021 matched with DB +City: Cottonwood, state: Arizona, Lat: 34.7195, Lng: -112.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Miami, Missouri 39.3224 -93.2258 matched with DB +City: Miami, state: Florida, Lat: 25.784, Lng: -80.2101, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Miami, Missouri 39.3224 -93.2258 matched with DB +City: Miami, state: Oklahoma, Lat: 36.8878, Lng: -94.8711, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Indiana 38.7837 -84.9236 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Indiana 38.7837 -84.9236 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Indiana 38.7837 -84.9236 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Indiana 38.7837 -84.9236 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Indiana 38.7837 -84.9236 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Indiana 38.7837 -84.9236 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marietta, Illinois 40.4995 -90.3931 matched with DB +City: Marietta, state: Ohio, Lat: 39.4241, Lng: -81.4465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marietta, Illinois 40.4995 -90.3931 matched with DB +City: Marietta, state: Georgia, Lat: 33.9533, Lng: -84.5422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lumberton, New Mexico 36.9328 -106.9352 matched with DB +City: Lumberton, state: North Carolina, Lat: 34.6312, Lng: -79.0186, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, New Mexico 36.9328 -106.9352 matched with DB +City: Lumberton, state: Texas, Lat: 30.2562, Lng: -94.207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lumberton, New Mexico 36.9328 -106.9352 matched with DB +City: Lumberton, state: New Jersey, Lat: 39.9569, Lng: -74.8036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Downey, Iowa 41.6120 -91.3472 matched with DB +City: Downey, state: California, Lat: 33.9379, Lng: -118.1311, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Uniontown, Arkansas 35.5853 -94.4469 matched with DB +City: Uniontown, state: Pennsylvania, Lat: 39.8993, Lng: -79.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, Nebraska 41.2581 -101.7091 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Defiance, Missouri 38.6327 -90.7846 matched with DB +City: Defiance, state: Ohio, Lat: 41.2813, Lng: -84.3657, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Arkansas 35.6778 -94.1778 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Arkansas 35.6778 -94.1778 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Claremont, South Dakota 45.6719 -98.0157 matched with DB +City: Claremont, state: New Hampshire, Lat: 43.379, Lng: -72.3368, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Claremont, South Dakota 45.6719 -98.0157 matched with DB +City: Claremont, state: California, Lat: 34.1259, Lng: -117.7153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, Wisconsin 45.2927 -90.3054 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, Wisconsin 45.2927 -90.3054 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Duncan, Iowa 43.1052 -93.7059 matched with DB +City: Duncan, state: Oklahoma, Lat: 34.5408, Lng: -97.9215, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mayfield, Kansas 37.2632 -97.5404 matched with DB +City: Mayfield, state: Kentucky, Lat: 36.7371, Lng: -88.6447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, South Dakota 43.7288 -97.8226 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, South Dakota 43.7288 -97.8226 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodward, Pennsylvania 40.8997 -77.3472 matched with DB +City: Woodward, state: Oklahoma, Lat: 36.4247, Lng: -99.4058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piedmont, Kansas 37.6206 -96.3708 matched with DB +City: Piedmont, state: California, Lat: 37.8225, Lng: -122.2301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corona, South Dakota 45.3352 -96.7646 matched with DB +City: Corona, state: California, Lat: 33.8616, Lng: -117.5649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wheaton, Kansas 39.5020 -96.3189 matched with DB +City: Wheaton, state: Illinois, Lat: 41.8561, Lng: -88.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Wheaton, Kansas 39.5020 -96.3189 matched with DB +City: Wheaton, state: Maryland, Lat: 39.0492, Lng: -77.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Acton, Montana 45.9290 -108.6788 matched with DB +City: Acton, state: Massachusetts, Lat: 42.4843, Lng: -71.4378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, Nebraska 40.0487 -100.2761 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mason, Wisconsin 46.4355 -91.0599 matched with DB +City: Mason, state: Ohio, Lat: 39.3571, Lng: -84.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairfield, Utah 40.2462 -112.0842 matched with DB +City: Fairfield, state: Iowa, Lat: 41.0064, Lng: -91.9667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Utah 40.2462 -112.0842 matched with DB +City: Fairfield, state: Alabama, Lat: 33.4747, Lng: -86.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Utah 40.2462 -112.0842 matched with DB +City: Fairfield, state: Ohio, Lat: 39.3301, Lng: -84.5409, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairfield, Utah 40.2462 -112.0842 matched with DB +City: Fairfield, state: California, Lat: 38.2583, Lng: -122.0335, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Los Altos, Texas 27.4904 -99.3858 matched with DB +City: Los Altos, state: California, Lat: 37.3684, Lng: -122.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jamestown, South Carolina 33.2858 -79.6945 matched with DB +City: Jamestown, state: North Dakota, Lat: 46.9063, Lng: -98.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jamestown, South Carolina 33.2858 -79.6945 matched with DB +City: Jamestown, state: New York, Lat: 42.0976, Lng: -79.2367, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, South Carolina 34.4913 -82.2958 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, South Carolina 34.4913 -82.2958 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, South Carolina 34.4913 -82.2958 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: Pennsylvania, Lat: 40.3412, Lng: -76.4228, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: Ohio, Lat: 39.4254, Lng: -84.2133, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: New Hampshire, Lat: 43.6353, Lng: -72.2531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: Indiana, Lat: 40.0324, Lng: -86.4551, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: Missouri, Lat: 37.6717, Lng: -92.6603, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: Tennessee, Lat: 36.204, Lng: -86.3481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lebanon, South Dakota 45.0688 -99.7664 matched with DB +City: Lebanon, state: Oregon, Lat: 44.5317, Lng: -122.9071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burbank, South Dakota 42.7461 -96.8326 matched with DB +City: Burbank, state: Illinois, Lat: 41.7444, Lng: -87.7686, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burbank, South Dakota 42.7461 -96.8326 matched with DB +City: Burbank, state: California, Lat: 34.1879, Lng: -118.3235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monument, Kansas 39.1049 -101.0079 matched with DB +City: Monument, state: Colorado, Lat: 39.0736, Lng: -104.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Oklahoma 36.5632 -97.9927 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amherst, Colorado 40.6831 -102.1725 matched with DB +City: Amherst, state: Ohio, Lat: 41.4022, Lng: -82.2303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Colorado 40.6831 -102.1725 matched with DB +City: Amherst, state: New Hampshire, Lat: 42.8706, Lng: -71.6068, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Amherst, Colorado 40.6831 -102.1725 matched with DB +City: Amherst, state: New York, Lat: 43.0117, Lng: -78.757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, New Mexico 32.7569 -107.2665 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Naples, South Dakota 44.7716 -97.5131 matched with DB +City: Naples, state: Florida, Lat: 26.1504, Lng: -81.7936, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sidney, Indiana 41.1050 -85.7425 matched with DB +City: Sidney, state: Ohio, Lat: 40.2891, Lng: -84.1667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, Oklahoma 36.1611 -95.6910 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Oklahoma 36.1611 -95.6910 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Oklahoma 36.1611 -95.6910 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasantville, Indiana 38.9670 -87.2503 matched with DB +City: Pleasantville, state: New Jersey, Lat: 39.39, Lng: -74.5169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Amity, Missouri 39.8682 -94.4352 matched with DB +City: Amity, state: Pennsylvania, Lat: 40.2905, Lng: -75.7477, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cave Spring, Oklahoma 35.7292 -94.7577 matched with DB +City: Cave Spring, state: Virginia, Lat: 37.2254, Lng: -80.0072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jerome, Arkansas 33.3988 -91.4697 matched with DB +City: Jerome, state: Idaho, Lat: 42.7179, Lng: -114.5159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitewater, Missouri 37.2368 -89.7978 matched with DB +City: Whitewater, state: Wisconsin, Lat: 42.8372, Lng: -88.7341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mount Olive, Arkansas 36.0038 -92.0914 matched with DB +City: Mount Olive, state: New Jersey, Lat: 40.8662, Lng: -74.7426, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Kansas 39.7369 -100.1765 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Kansas 39.7369 -100.1765 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Kansas 39.7369 -100.1765 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Kansas 39.7369 -100.1765 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Kansas 39.7369 -100.1765 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berwyn, Nebraska 41.3509 -99.5007 matched with DB +City: Berwyn, state: Illinois, Lat: 41.8433, Lng: -87.7909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun Valley, Texas 33.6705 -95.4287 matched with DB +City: Sun Valley, state: Nevada, Lat: 39.6104, Lng: -119.777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Stockton, Maryland 38.0659 -75.4134 matched with DB +City: Stockton, state: California, Lat: 37.9765, Lng: -121.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marlboro, New Jersey 39.4860 -75.3215 matched with DB +City: Marlboro, state: New Jersey, Lat: 40.3427, Lng: -74.2567, Country: USA (Matches - state: true lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Russellville, Illinois 38.8189 -87.5300 matched with DB +City: Russellville, state: Alabama, Lat: 34.5055, Lng: -87.7283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Russellville, Illinois 38.8189 -87.5300 matched with DB +City: Russellville, state: Arkansas, Lat: 35.2762, Lng: -93.1383, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tracy, Montana 47.4102 -111.1537 matched with DB +City: Tracy, state: California, Lat: 37.7269, Lng: -121.4523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bogota, Tennessee 36.1620 -89.4390 matched with DB +City: Bogota, state: New Jersey, Lat: 40.8751, Lng: -74.0293, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Arkansas 35.1267 -91.4539 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Arkansas 35.1267 -91.4539 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Arkansas 35.1267 -91.4539 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chester, Oklahoma 36.2165 -98.9208 matched with DB +City: Chester, state: Pennsylvania, Lat: 39.8456, Lng: -75.3718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chester, Oklahoma 36.2165 -98.9208 matched with DB +City: Chester, state: Virginia, Lat: 37.3531, Lng: -77.4342, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Arkansas 35.7924 -94.4911 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peoria, Colorado 39.6649 -104.1456 matched with DB +City: Peoria, state: Illinois, Lat: 40.752, Lng: -89.6154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peoria, Colorado 39.6649 -104.1456 matched with DB +City: Peoria, state: Arizona, Lat: 33.7843, Lng: -112.2989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vicksburg, Pennsylvania 40.3698 -78.4158 matched with DB +City: Vicksburg, state: Mississippi, Lat: 32.3173, Lng: -90.8868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Batesville, Ohio 39.9156 -81.2824 matched with DB +City: Batesville, state: Arkansas, Lat: 35.7687, Lng: -91.6227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glen Allen, Missouri 37.3171 -90.0282 matched with DB +City: Glen Allen, state: Virginia, Lat: 37.666, Lng: -77.4838, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, Iowa 40.9820 -91.6817 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, Iowa 40.9820 -91.6817 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinsburg, Nebraska 42.5084 -96.8314 matched with DB +City: Martinsburg, state: West Virginia, Lat: 39.4582, Lng: -77.9776, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belvidere, Tennessee 35.1281 -86.1881 matched with DB +City: Belvidere, state: Illinois, Lat: 42.2543, Lng: -88.8649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Essex, Montana 48.2823 -113.6095 matched with DB +City: Essex, state: Maryland, Lat: 39.3021, Lng: -76.4449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Essex, Montana 48.2823 -113.6095 matched with DB +City: Essex, state: Vermont, Lat: 44.5196, Lng: -73.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Indiana 39.8346 -86.1926 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Indiana 39.8346 -86.1926 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alpine, Arkansas 34.2268 -93.3783 matched with DB +City: Alpine, state: California, Lat: 32.8439, Lng: -116.7585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alpine, Arkansas 34.2268 -93.3783 matched with DB +City: Alpine, state: Utah, Lat: 40.4629, Lng: -111.7724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardner, North Dakota 47.1445 -96.9686 matched with DB +City: Gardner, state: Massachusetts, Lat: 42.5845, Lng: -71.9868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gardner, North Dakota 47.1445 -96.9686 matched with DB +City: Gardner, state: Kansas, Lat: 38.8122, Lng: -94.9275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antelope, Oregon 44.9113 -120.7236 matched with DB +City: Antelope, state: California, Lat: 38.7153, Lng: -121.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: Michigan, Lat: 43.1797, Lng: -85.2534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: Rhode Island, Lat: 41.882, Lng: -71.5549, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: Ohio, Lat: 40.1043, Lng: -84.6209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: North Carolina, Lat: 35.5943, Lng: -77.376, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: South Carolina, Lat: 34.8354, Lng: -82.3646, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: Mississippi, Lat: 33.385, Lng: -91.0514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: Texas, Lat: 33.1116, Lng: -96.1099, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: Wisconsin, Lat: 44.3003, Lng: -88.5365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Greenville, Iowa 43.0170 -95.1461 matched with DB +City: Greenville, state: New York, Lat: 40.9986, Lng: -73.8189, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butte, North Dakota 47.8370 -100.6658 matched with DB +City: Butte, state: Montana, Lat: 45.902, Lng: -112.6571, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Hill, Iowa 41.4122 -93.6501 matched with DB +City: Spring Hill, state: Florida, Lat: 28.4798, Lng: -82.53, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spring Hill, Iowa 41.4122 -93.6501 matched with DB +City: Spring Hill, state: Tennessee, Lat: 35.7437, Lng: -86.9116, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westphalia, Indiana 38.8665 -87.2277 matched with DB +City: Westphalia, state: Maryland, Lat: 38.8356, Lng: -76.8298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Trenton, Iowa 41.0660 -91.6395 matched with DB +City: Trenton, state: New Jersey, Lat: 40.2237, Lng: -74.7641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Iowa 41.0660 -91.6395 matched with DB +City: Trenton, state: Ohio, Lat: 39.4792, Lng: -84.462, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Trenton, Iowa 41.0660 -91.6395 matched with DB +City: Trenton, state: Michigan, Lat: 42.1394, Lng: -83.1929, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monument, Pennsylvania 41.1112 -77.7042 matched with DB +City: Monument, state: Colorado, Lat: 39.0736, Lng: -104.8467, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, North Dakota 48.5824 -103.4676 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, North Dakota 48.5824 -103.4676 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beverly, Illinois 39.7946 -90.9900 matched with DB +City: Beverly, state: Massachusetts, Lat: 42.5681, Lng: -70.8627, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Antonio, New Mexico 33.9161 -106.8700 matched with DB +City: San Antonio, state: Texas, Lat: 29.4632, Lng: -98.5238, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, South Dakota 42.9810 -97.4967 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Caledonia, North Dakota 47.4577 -96.8892 matched with DB +City: Caledonia, state: Wisconsin, Lat: 42.7986, Lng: -87.8762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Lake, Missouri 40.0735 -95.3518 matched with DB +City: Big Lake, state: Minnesota, Lat: 45.3417, Lng: -93.7434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glasgow, Pennsylvania 40.6444 -80.5080 matched with DB +City: Glasgow, state: Delaware, Lat: 39.6015, Lng: -75.7473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Glasgow, Pennsylvania 40.6444 -80.5080 matched with DB +City: Glasgow, state: Kentucky, Lat: 37.0048, Lng: -85.9263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danbury, Nebraska 40.0376 -100.4051 matched with DB +City: Danbury, state: Connecticut, Lat: 41.4015, Lng: -73.4709, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lima, Oklahoma 35.1737 -96.5983 matched with DB +City: Lima, state: Ohio, Lat: 40.741, Lng: -84.112, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntley, Nebraska 40.2105 -99.2901 matched with DB +City: Huntley, state: Illinois, Lat: 42.1599, Lng: -88.433, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlett, Kansas 37.0549 -95.2112 matched with DB +City: Bartlett, state: Illinois, Lat: 41.9804, Lng: -88.2071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bartlett, Kansas 37.0549 -95.2112 matched with DB +City: Bartlett, state: Tennessee, Lat: 35.2337, Lng: -89.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wilsonville, Nebraska 40.1119 -100.1066 matched with DB +City: Wilsonville, state: Oregon, Lat: 45.3109, Lng: -122.7702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Kansas 39.0933 -97.3201 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kansas 39.0933 -97.3201 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kansas 39.0933 -97.3201 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kansas 39.0933 -97.3201 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kansas 39.0933 -97.3201 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Kansas 39.0933 -97.3201 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterbury, Nebraska 42.4571 -96.7353 matched with DB +City: Waterbury, state: Connecticut, Lat: 41.5582, Lng: -73.0361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cambridge, Kansas 37.3177 -96.6673 matched with DB +City: Cambridge, state: Massachusetts, Lat: 42.3759, Lng: -71.1185, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Kansas 37.3177 -96.6673 matched with DB +City: Cambridge, state: Maryland, Lat: 38.5515, Lng: -76.0787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Kansas 37.3177 -96.6673 matched with DB +City: Cambridge, state: Minnesota, Lat: 45.5612, Lng: -93.2283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cambridge, Kansas 37.3177 -96.6673 matched with DB +City: Cambridge, state: Ohio, Lat: 40.0221, Lng: -81.5869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Box Elder, Montana 48.3230 -110.0177 matched with DB +City: Box Elder, state: South Dakota, Lat: 44.112, Lng: -103.0818, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sycamore, Oklahoma 36.3990 -94.7149 matched with DB +City: Sycamore, state: Illinois, Lat: 41.9957, Lng: -88.6821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayesville, Iowa 41.2648 -92.2478 matched with DB +City: Hayesville, state: Oregon, Lat: 44.9793, Lng: -122.9738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pekin, North Dakota 47.7919 -98.3278 matched with DB +City: Pekin, state: Illinois, Lat: 40.5678, Lng: -89.6251, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Grange, Tennessee 35.0476 -89.2409 matched with DB +City: La Grange, state: Illinois, Lat: 41.8072, Lng: -87.8741, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Tennessee 35.0476 -89.2409 matched with DB +City: La Grange, state: Kentucky, Lat: 38.3987, Lng: -85.375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Grange, Tennessee 35.0476 -89.2409 matched with DB +City: La Grange, state: New York, Lat: 41.6787, Lng: -73.8029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cayce, Kentucky 36.5577 -89.0349 matched with DB +City: Cayce, state: South Carolina, Lat: 33.9459, Lng: -81.0429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Londonderry, Vermont 43.2278 -72.8083 matched with DB +City: Londonderry, state: New Hampshire, Lat: 42.8796, Lng: -71.3873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Indiana 39.3504 -85.6197 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Indiana 39.3504 -85.6197 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Indiana 39.3504 -85.6197 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Indiana 39.3504 -85.6197 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorkshire, Ohio 40.3252 -84.4947 matched with DB +City: Yorkshire, state: Virginia, Lat: 38.7882, Lng: -77.4496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Minnesota 47.0784 -96.7959 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Minnesota 47.0784 -96.7959 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Minnesota 47.0784 -96.7959 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodbury, Kentucky 37.1836 -86.6353 matched with DB +City: Woodbury, state: New Jersey, Lat: 39.8379, Lng: -75.1524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Kentucky 37.1836 -86.6353 matched with DB +City: Woodbury, state: New York, Lat: 41.3284, Lng: -74.1004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Kentucky 37.1836 -86.6353 matched with DB +City: Woodbury, state: Minnesota, Lat: 44.9057, Lng: -92.923, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Woodbury, Kentucky 37.1836 -86.6353 matched with DB +City: Woodbury, state: New York, Lat: 40.8176, Lng: -73.4703, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chillicothe, Iowa 41.0861 -92.5300 matched with DB +City: Chillicothe, state: Missouri, Lat: 39.7953, Lng: -93.5499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chillicothe, Iowa 41.0861 -92.5300 matched with DB +City: Chillicothe, state: Ohio, Lat: 39.3393, Lng: -82.9939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Iowa 41.1808 -92.9538 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Iowa 41.1808 -92.9538 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Iowa 41.1808 -92.9538 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Iowa 41.1808 -92.9538 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dayton, Alabama 32.3510 -87.6416 matched with DB +City: Dayton, state: Nevada, Lat: 39.2592, Lng: -119.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Alabama 32.3510 -87.6416 matched with DB +City: Dayton, state: Texas, Lat: 30.0315, Lng: -94.9158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dayton, Alabama 32.3510 -87.6416 matched with DB +City: Dayton, state: Ohio, Lat: 39.7805, Lng: -84.2003, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Joseph, Iowa 42.9123 -94.2308 matched with DB +City: St. Joseph, state: Missouri, Lat: 39.7598, Lng: -94.821, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, New Mexico 35.0046 -108.3979 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbus, North Dakota 48.9050 -102.7812 matched with DB +City: Columbus, state: Nebraska, Lat: 41.4366, Lng: -97.3565, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Dakota 48.9050 -102.7812 matched with DB +City: Columbus, state: Ohio, Lat: 39.9862, Lng: -82.9855, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Dakota 48.9050 -102.7812 matched with DB +City: Columbus, state: Indiana, Lat: 39.2093, Lng: -85.9183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Dakota 48.9050 -102.7812 matched with DB +City: Columbus, state: Mississippi, Lat: 33.5088, Lng: -88.4096, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbus, North Dakota 48.9050 -102.7812 matched with DB +City: Columbus, state: Georgia, Lat: 32.51, Lng: -84.8771, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Graham, Alabama 33.4552 -85.3230 matched with DB +City: Graham, state: North Carolina, Lat: 36.0589, Lng: -79.3894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Alabama 33.4552 -85.3230 matched with DB +City: Graham, state: Washington, Lat: 47.0322, Lng: -122.2827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Graham, Alabama 33.4552 -85.3230 matched with DB +City: Graham, state: Texas, Lat: 33.1017, Lng: -98.5779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lorton, Nebraska 40.5972 -96.0242 matched with DB +City: Lorton, state: Virginia, Lat: 38.6983, Lng: -77.2164, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Craig, Iowa 42.8955 -96.3096 matched with DB +City: Craig, state: Colorado, Lat: 40.5171, Lng: -107.5554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Aurora, Kansas 39.4520 -97.5300 matched with DB +City: Aurora, state: Ohio, Lat: 41.3118, Lng: -81.345, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Kansas 39.4520 -97.5300 matched with DB +City: Aurora, state: Illinois, Lat: 41.7638, Lng: -88.2902, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Kansas 39.4520 -97.5300 matched with DB +City: Aurora, state: Colorado, Lat: 39.7083, Lng: -104.7237, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Aurora, Kansas 39.4520 -97.5300 matched with DB +City: Aurora, state: New York, Lat: 42.7382, Lng: -78.6373, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newport, Nebraska 42.6002 -99.3283 matched with DB +City: Newport, state: Rhode Island, Lat: 41.4801, Lng: -71.3203, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Nebraska 42.6002 -99.3283 matched with DB +City: Newport, state: Kentucky, Lat: 39.0856, Lng: -84.4868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newport, Nebraska 42.6002 -99.3283 matched with DB +City: Newport, state: Oregon, Lat: 44.6242, Lng: -124.0513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, North Dakota 47.5974 -97.8994 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, North Dakota 47.5974 -97.8994 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Iowa 42.9022 -91.1493 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Iowa 42.9022 -91.1493 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Iowa 42.9022 -91.1493 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Iowa 42.9022 -91.1493 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Iowa 42.9022 -91.1493 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Paul, Iowa 40.7678 -91.5164 matched with DB +City: St. Paul, state: Minnesota, Lat: 44.9478, Lng: -93.1039, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peru, Pennsylvania 40.8544 -77.7671 matched with DB +City: Peru, state: Illinois, Lat: 41.3482, Lng: -89.1371, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peru, Pennsylvania 40.8544 -77.7671 matched with DB +City: Peru, state: Indiana, Lat: 40.7593, Lng: -86.0756, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Morristown, South Dakota 45.9386 -101.7188 matched with DB +City: Morristown, state: New Jersey, Lat: 40.7967, Lng: -74.4772, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Morristown, South Dakota 45.9386 -101.7188 matched with DB +City: Morristown, state: Tennessee, Lat: 36.2043, Lng: -83.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barstow, Illinois 41.5162 -90.3566 matched with DB +City: Barstow, state: California, Lat: 34.8661, Lng: -117.0471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Montana 45.4660 -112.1339 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Montana 45.4660 -112.1339 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Montana 45.4660 -112.1339 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Piqua, Kansas 37.9220 -95.5375 matched with DB +City: Piqua, state: Ohio, Lat: 40.1506, Lng: -84.2441, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Redding, Iowa 40.6067 -94.3863 matched with DB +City: Redding, state: California, Lat: 40.5698, Lng: -122.365, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Revere, Minnesota 44.2215 -95.3611 matched with DB +City: Revere, state: Massachusetts, Lat: 42.4189, Lng: -71.004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vermillion, Kansas 39.7183 -96.2659 matched with DB +City: Vermillion, state: South Dakota, Lat: 42.7811, Lng: -96.9256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, Virginia 36.8052 -83.0575 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, Virginia 36.8052 -83.0575 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blackfoot, Montana 48.5771 -112.8733 matched with DB +City: Blackfoot, state: Idaho, Lat: 43.194, Lng: -112.3454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oak Grove, Oklahoma 36.2056 -96.3384 matched with DB +City: Oak Grove, state: Minnesota, Lat: 45.3409, Lng: -93.3264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Oklahoma 36.2056 -96.3384 matched with DB +City: Oak Grove, state: Oregon, Lat: 45.4156, Lng: -122.6349, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oak Grove, Oklahoma 36.2056 -96.3384 matched with DB +City: Oak Grove, state: South Carolina, Lat: 33.978, Lng: -81.1468, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fullerton, North Dakota 46.1632 -98.4272 matched with DB +City: Fullerton, state: California, Lat: 33.8841, Lng: -117.9279, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fullerton, North Dakota 46.1632 -98.4272 matched with DB +City: Fullerton, state: Pennsylvania, Lat: 40.6309, Lng: -75.4834, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galesburg, North Dakota 47.2701 -97.4087 matched with DB +City: Galesburg, state: Illinois, Lat: 40.9506, Lng: -90.3763, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laconia, Indiana 38.0318 -86.0855 matched with DB +City: Laconia, state: New Hampshire, Lat: 43.5725, Lng: -71.4775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Latham, Missouri 38.5599 -92.6814 matched with DB +City: Latham, state: New York, Lat: 42.7427, Lng: -73.7497, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Shirley, Illinois 40.4075 -89.0643 matched with DB +City: Shirley, state: New York, Lat: 40.7936, Lng: -72.8748, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crown Point, Alaska 60.4267 -149.3530 matched with DB +City: Crown Point, state: Indiana, Lat: 41.4143, Lng: -87.3457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lisbon, Maryland 39.3361 -77.0700 matched with DB +City: Lisbon, state: Maine, Lat: 44.0265, Lng: -70.09, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitney, Nebraska 42.7837 -103.2567 matched with DB +City: Whitney, state: Nevada, Lat: 36.1008, Lng: -115.0379, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pleasanton, Iowa 40.5824 -93.7429 matched with DB +City: Pleasanton, state: California, Lat: 37.6663, Lng: -121.8805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Pleasanton, Iowa 40.5824 -93.7429 matched with DB +City: Pleasanton, state: Texas, Lat: 28.9642, Lng: -98.4957, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Colorado 38.9268 -107.4725 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Colorado 38.9268 -107.4725 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Colorado 38.9268 -107.4725 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clawson, Utah 39.1391 -111.0934 matched with DB +City: Clawson, state: Michigan, Lat: 42.5367, Lng: -83.1504, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fargo, Arkansas 34.9537 -91.1764 matched with DB +City: Fargo, state: North Dakota, Lat: 46.8651, Lng: -96.8292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakwood, Oklahoma 35.9316 -98.7031 matched with DB +City: Oakwood, state: Ohio, Lat: 39.7202, Lng: -84.1734, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainville, Ohio 39.1438 -84.3593 matched with DB +City: Plainville, state: Massachusetts, Lat: 42.0141, Lng: -71.3364, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Tupelo, Arkansas 35.3903 -91.2299 matched with DB +City: Tupelo, state: Mississippi, Lat: 34.2692, Lng: -88.7318, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Crestline, Kansas 37.1701 -94.7065 matched with DB +City: Crestline, state: California, Lat: 34.2486, Lng: -117.2887, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marshfield, Indiana 40.2512 -87.4523 matched with DB +City: Marshfield, state: Wisconsin, Lat: 44.6627, Lng: -90.1728, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marshfield, Indiana 40.2512 -87.4523 matched with DB +City: Marshfield, state: Massachusetts, Lat: 42.114, Lng: -70.7151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paris, Virginia 39.0024 -77.9520 matched with DB +City: Paris, state: Kentucky, Lat: 38.2016, Lng: -84.2718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Virginia 39.0024 -77.9520 matched with DB +City: Paris, state: Tennessee, Lat: 36.2933, Lng: -88.3065, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Paris, Virginia 39.0024 -77.9520 matched with DB +City: Paris, state: Texas, Lat: 33.6688, Lng: -95.546, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Branson, Colorado 37.0155 -103.8838 matched with DB +City: Branson, state: Missouri, Lat: 36.6509, Lng: -93.2636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Holt, Minnesota 48.2929 -96.1945 matched with DB +City: Holt, state: Michigan, Lat: 42.6416, Lng: -84.5308, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prescott, Oregon 46.0487 -122.8879 matched with DB +City: Prescott, state: Arizona, Lat: 34.5849, Lng: -112.4473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milton, North Dakota 48.6260 -98.0459 matched with DB +City: Milton, state: Georgia, Lat: 34.1353, Lng: -84.3139, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Dakota 48.6260 -98.0459 matched with DB +City: Milton, state: Florida, Lat: 30.6286, Lng: -87.0522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Dakota 48.6260 -98.0459 matched with DB +City: Milton, state: Washington, Lat: 47.2524, Lng: -122.3153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Dakota 48.6260 -98.0459 matched with DB +City: Milton, state: Massachusetts, Lat: 42.2412, Lng: -71.0844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Dakota 48.6260 -98.0459 matched with DB +City: Milton, state: New York, Lat: 43.0406, Lng: -73.8998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milton, North Dakota 48.6260 -98.0459 matched with DB +City: Milton, state: Vermont, Lat: 44.6429, Lng: -73.1538, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Marysville, Montana 46.7502 -112.3026 matched with DB +City: Marysville, state: Michigan, Lat: 42.9084, Lng: -82.4806, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Montana 46.7502 -112.3026 matched with DB +City: Marysville, state: Ohio, Lat: 40.2279, Lng: -83.3595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Montana 46.7502 -112.3026 matched with DB +City: Marysville, state: Washington, Lat: 48.0809, Lng: -122.1561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Marysville, Montana 46.7502 -112.3026 matched with DB +City: Marysville, state: California, Lat: 39.1518, Lng: -121.5835, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Belvidere, Nebraska 40.2546 -97.5577 matched with DB +City: Belvidere, state: Illinois, Lat: 42.2543, Lng: -88.8649, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockport, Washington 48.4850 -121.6065 matched with DB +City: Rockport, state: Texas, Lat: 28.029, Lng: -97.0722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrisburg, Nebraska 41.5505 -103.7267 matched with DB +City: Harrisburg, state: Pennsylvania, Lat: 40.2752, Lng: -76.8843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrisburg, Nebraska 41.5505 -103.7267 matched with DB +City: Harrisburg, state: North Carolina, Lat: 35.3125, Lng: -80.6485, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chili, Indiana 40.8600 -86.0264 matched with DB +City: Chili, state: New York, Lat: 43.0845, Lng: -77.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Green Valley, Wisconsin 44.7969 -88.2682 matched with DB +City: Green Valley, state: Arizona, Lat: 31.8393, Lng: -111.0009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Green Valley, Wisconsin 44.7969 -88.2682 matched with DB +City: Green Valley, state: Maryland, Lat: 39.3414, Lng: -77.24, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McHenry, North Dakota 47.5764 -98.5910 matched with DB +City: McHenry, state: Illinois, Lat: 42.3387, Lng: -88.2932, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Haven, Iowa 43.2839 -92.6422 matched with DB +City: New Haven, state: Connecticut, Lat: 41.3113, Lng: -72.9246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Haven, Iowa 43.2839 -92.6422 matched with DB +City: New Haven, state: Indiana, Lat: 41.0676, Lng: -85.0174, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bon Air, Alabama 33.2621 -86.3319 matched with DB +City: Bon Air, state: Virginia, Lat: 37.5187, Lng: -77.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Easton, Wisconsin 43.8383 -89.8049 matched with DB +City: Easton, state: Pennsylvania, Lat: 40.6858, Lng: -75.2209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Wisconsin 43.8383 -89.8049 matched with DB +City: Easton, state: Maryland, Lat: 38.776, Lng: -76.0701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Easton, Wisconsin 43.8383 -89.8049 matched with DB +City: Easton, state: Massachusetts, Lat: 42.0362, Lng: -71.1103, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardner, Colorado 37.7889 -105.1644 matched with DB +City: Gardner, state: Massachusetts, Lat: 42.5845, Lng: -71.9868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Gardner, Colorado 37.7889 -105.1644 matched with DB +City: Gardner, state: Kansas, Lat: 38.8122, Lng: -94.9275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. George, Alaska 56.5791 -169.6114 matched with DB +City: St. George, state: Utah, Lat: 37.0758, Lng: -113.5752, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Annapolis, Illinois 39.1431 -87.8172 matched with DB +City: Annapolis, state: Maryland, Lat: 38.9706, Lng: -76.5047, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Iowa, Lat: 41.8435, Lng: -90.2412, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: New Jersey, Lat: 40.6315, Lng: -74.8553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Maryland, Lat: 38.7499, Lng: -76.9063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Missouri, Lat: 38.3716, Lng: -93.7679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Tennessee, Lat: 36.0981, Lng: -84.1283, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Mississippi, Lat: 32.354, Lng: -90.3403, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Utah, Lat: 41.1395, Lng: -112.0656, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clinton, Nebraska 42.7598 -102.3479 matched with DB +City: Clinton, state: Massachusetts, Lat: 42.4119, Lng: -71.6888, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martin, North Dakota 47.8268 -100.1154 matched with DB +City: Martin, state: Tennessee, Lat: 36.3385, Lng: -88.8513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Cottage Grove, Tennessee 36.3783 -88.4786 matched with DB +City: Cottage Grove, state: Minnesota, Lat: 44.8161, Lng: -92.9274, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Cottage Grove, Tennessee 36.3783 -88.4786 matched with DB +City: Cottage Grove, state: Oregon, Lat: 43.796, Lng: -123.0573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Augusta, Iowa 40.7598 -91.2768 matched with DB +City: Augusta, state: Maine, Lat: 44.3341, Lng: -69.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Iowa 40.7598 -91.2768 matched with DB +City: Augusta, state: Kansas, Lat: 37.6955, Lng: -96.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Augusta, Iowa 40.7598 -91.2768 matched with DB +City: Augusta, state: Georgia, Lat: 33.3645, Lng: -82.0708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fortuna, Missouri 38.5676 -92.7970 matched with DB +City: Fortuna, state: California, Lat: 40.5862, Lng: -124.1419, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Allendale, Missouri 40.4853 -94.2887 matched with DB +City: Allendale, state: Michigan, Lat: 42.9845, Lng: -85.9499, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Albany, Kansas 37.5678 -95.9363 matched with DB +City: New Albany, state: Indiana, Lat: 38.309, Lng: -85.8234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: New Albany, Kansas 37.5678 -95.9363 matched with DB +City: New Albany, state: Ohio, Lat: 40.0809, Lng: -82.7848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chelsea, South Dakota 45.1675 -98.7434 matched with DB +City: Chelsea, state: Massachusetts, Lat: 42.3959, Lng: -71.0325, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Chelsea, South Dakota 45.1675 -98.7434 matched with DB +City: Chelsea, state: Alabama, Lat: 33.3262, Lng: -86.63, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alamo, Indiana 39.9834 -87.0552 matched with DB +City: Alamo, state: California, Lat: 37.8548, Lng: -122.0136, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alamo, Indiana 39.9834 -87.0552 matched with DB +City: Alamo, state: Texas, Lat: 26.181, Lng: -98.1177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bath, South Dakota 45.4692 -98.3236 matched with DB +City: Bath, state: Maine, Lat: 43.9346, Lng: -69.8346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bath, South Dakota 45.4692 -98.3236 matched with DB +City: Bath, state: New York, Lat: 42.3219, Lng: -77.3083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Revere, Missouri 40.4944 -91.6764 matched with DB +City: Revere, state: Massachusetts, Lat: 42.4189, Lng: -71.004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dalton, Missouri 39.3976 -92.9921 matched with DB +City: Dalton, state: Georgia, Lat: 34.769, Lng: -84.972, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durham, Kansas 38.4846 -97.2268 matched with DB +City: Durham, state: North Carolina, Lat: 35.9792, Lng: -78.9022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Durham, Kansas 38.4846 -97.2268 matched with DB +City: Durham, state: New Hampshire, Lat: 43.1174, Lng: -70.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashua, Minnesota 46.0377 -96.3059 matched with DB +City: Nashua, state: New Hampshire, Lat: 42.7491, Lng: -71.491, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Unity, Illinois 37.1520 -89.2730 matched with DB +City: Unity, state: Pennsylvania, Lat: 40.2811, Lng: -79.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barstow, Washington 48.7783 -118.1329 matched with DB +City: Barstow, state: California, Lat: 34.8661, Lng: -117.0471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whitewater, Indiana 39.9449 -84.8307 matched with DB +City: Whitewater, state: Wisconsin, Lat: 42.8372, Lng: -88.7341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fortuna, North Dakota 48.9099 -103.7783 matched with DB +City: Fortuna, state: California, Lat: 40.5862, Lng: -124.1419, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: Pennsylvania, Lat: 40.1741, Lng: -80.2465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: District of Columbia, Lat: 38.9047, Lng: -77.0163, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: Illinois, Lat: 40.705, Lng: -89.434, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: Indiana, Lat: 38.6586, Lng: -87.1591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: Missouri, Lat: 38.5515, Lng: -91.0154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: North Carolina, Lat: 35.5586, Lng: -77.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: Utah, Lat: 37.1303, Lng: -113.4878, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: New Jersey, Lat: 40.7877, Lng: -74.7918, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: New Jersey, Lat: 39.7469, Lng: -75.0724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: Pennsylvania, Lat: 39.7494, Lng: -77.5579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Washington, Virginia 38.7122 -78.1598 matched with DB +City: Washington, state: New Jersey, Lat: 40.9884, Lng: -74.0636, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Calverton, Virginia 38.6355 -77.6662 matched with DB +City: Calverton, state: Maryland, Lat: 39.0578, Lng: -76.9488, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Everett, Georgia 31.3921 -81.6398 matched with DB +City: Everett, state: Massachusetts, Lat: 42.4064, Lng: -71.0545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Everett, Georgia 31.3921 -81.6398 matched with DB +City: Everett, state: Washington, Lat: 47.9525, Lng: -122.1669, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Irvington, Iowa 43.0129 -94.1957 matched with DB +City: Irvington, state: New Jersey, Lat: 40.7243, Lng: -74.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Glenwood, New Mexico 33.3188 -108.8811 matched with DB +City: Glenwood, state: Illinois, Lat: 41.541, Lng: -87.6118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, South Dakota 45.7248 -97.4139 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Washington 46.2699 -123.6144 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Washington 46.2699 -123.6144 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Washington 46.2699 -123.6144 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: California, Kentucky 38.9184 -84.2636 matched with DB +City: California, state: Maryland, Lat: 38.2969, Lng: -76.4949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: London, Indiana 39.6256 -85.9203 matched with DB +City: London, state: Ohio, Lat: 39.8935, Lng: -83.4375, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ionia, Missouri 38.5037 -93.3236 matched with DB +City: Ionia, state: Michigan, Lat: 42.9773, Lng: -85.0727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngsville, New Mexico 36.1928 -106.5660 matched with DB +City: Youngsville, state: Louisiana, Lat: 30.0963, Lng: -91.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: La Porte, California 39.6725 -120.9852 matched with DB +City: La Porte, state: Texas, Lat: 29.6689, Lng: -95.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: La Porte, California 39.6725 -120.9852 matched with DB +City: La Porte, state: Indiana, Lat: 41.6069, Lng: -86.7142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sun City, Kansas 37.3785 -98.9166 matched with DB +City: Sun City, state: Arizona, Lat: 33.6165, Lng: -112.2819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherman, South Dakota 43.7577 -96.4762 matched with DB +City: Sherman, state: Texas, Lat: 33.6273, Lng: -96.6221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Somerset, Kansas 38.6058 -94.7779 matched with DB +City: Somerset, state: New Jersey, Lat: 40.5083, Lng: -74.501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Kansas 38.6058 -94.7779 matched with DB +City: Somerset, state: Kentucky, Lat: 37.0834, Lng: -84.6109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Somerset, Kansas 38.6058 -94.7779 matched with DB +City: Somerset, state: Massachusetts, Lat: 41.7404, Lng: -71.1612, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rome, Ohio 38.6657 -83.3793 matched with DB +City: Rome, state: New York, Lat: 43.226, Lng: -75.4909, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rome, Ohio 38.6657 -83.3793 matched with DB +City: Rome, state: Georgia, Lat: 34.2662, Lng: -85.1863, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berlin, North Dakota 46.3784 -98.4885 matched with DB +City: Berlin, state: New Hampshire, Lat: 44.4869, Lng: -71.2599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: De Witt, Missouri 39.3849 -93.2199 matched with DB +City: De Witt, state: New York, Lat: 43.0501, Lng: -76.071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: De Witt, Missouri 39.3849 -93.2199 matched with DB +City: De Witt, state: New York, Lat: 43.03, Lng: -76.0819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: White Oak, Missouri 36.3299 -90.0276 matched with DB +City: White Oak, state: Maryland, Lat: 39.0451, Lng: -76.9885, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: White Oak, Missouri 36.3299 -90.0276 matched with DB +City: White Oak, state: Ohio, Lat: 39.2106, Lng: -84.606, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Severance, Kansas 39.7668 -95.2492 matched with DB +City: Severance, state: Colorado, Lat: 40.5265, Lng: -104.865, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richland, Nebraska 41.4367 -97.2152 matched with DB +City: Richland, state: Washington, Lat: 46.2824, Lng: -119.2939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Nebraska 41.4367 -97.2152 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.644, Lng: -79.9579, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Nebraska 41.4367 -97.2152 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.2842, Lng: -78.8449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richland, Nebraska 41.4367 -97.2152 matched with DB +City: Richland, state: Pennsylvania, Lat: 40.449, Lng: -75.3362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rodeo, New Mexico 31.8396 -109.0265 matched with DB +City: Rodeo, state: California, Lat: 38.0367, Lng: -122.2526, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Galt, Iowa 42.6936 -93.6047 matched with DB +City: Galt, state: California, Lat: 38.2698, Lng: -121.3004, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Georgetown, Maryland 39.2194 -76.1971 matched with DB +City: Georgetown, state: Kentucky, Lat: 38.2247, Lng: -84.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Maryland 39.2194 -76.1971 matched with DB +City: Georgetown, state: Texas, Lat: 30.666, Lng: -97.6966, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Georgetown, Maryland 39.2194 -76.1971 matched with DB +City: Georgetown, state: Georgia, Lat: 31.9849, Lng: -81.226, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bolivar, Mississippi 33.6606 -91.0519 matched with DB +City: Bolivar, state: Missouri, Lat: 37.6059, Lng: -93.4175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elgin, Kansas 37.0019 -96.2806 matched with DB +City: Elgin, state: Illinois, Lat: 42.0383, Lng: -88.324, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Elgin, Kansas 37.0019 -96.2806 matched with DB +City: Elgin, state: Texas, Lat: 30.3526, Lng: -97.3883, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manchester, Minnesota 43.7254 -93.4509 matched with DB +City: Manchester, state: New Hampshire, Lat: 42.9848, Lng: -71.4447, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Minnesota 43.7254 -93.4509 matched with DB +City: Manchester, state: New York, Lat: 42.9921, Lng: -77.1897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Minnesota 43.7254 -93.4509 matched with DB +City: Manchester, state: Missouri, Lat: 38.583, Lng: -90.5064, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Minnesota 43.7254 -93.4509 matched with DB +City: Manchester, state: Tennessee, Lat: 35.463, Lng: -86.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Minnesota 43.7254 -93.4509 matched with DB +City: Manchester, state: Virginia, Lat: 37.4902, Lng: -77.5396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Manchester, Minnesota 43.7254 -93.4509 matched with DB +City: Manchester, state: New Jersey, Lat: 39.9652, Lng: -74.3738, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bucyrus, North Dakota 46.0648 -102.7885 matched with DB +City: Bucyrus, state: Ohio, Lat: 40.8054, Lng: -82.9719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Passaic, Missouri 38.3220 -94.3486 matched with DB +City: Passaic, state: New Jersey, Lat: 40.8574, Lng: -74.1282, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brooksville, Oklahoma 35.2097 -96.9611 matched with DB +City: Brooksville, state: Florida, Lat: 28.5404, Lng: -82.3903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Spring, Missouri 38.8020 -91.4837 matched with DB +City: Big Spring, state: Texas, Lat: 32.2389, Lng: -101.4799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elkhorn, Montana 46.2843 -111.9488 matched with DB +City: Elkhorn, state: Wisconsin, Lat: 42.6713, Lng: -88.5377, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fair Oaks, Arkansas 35.2488 -91.0319 matched with DB +City: Fair Oaks, state: Georgia, Lat: 33.9193, Lng: -84.5445, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Arkansas 35.2488 -91.0319 matched with DB +City: Fair Oaks, state: California, Lat: 38.6504, Lng: -121.2496, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fair Oaks, Arkansas 35.2488 -91.0319 matched with DB +City: Fair Oaks, state: Virginia, Lat: 38.8653, Lng: -77.3586, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Folsom, New Mexico 36.8478 -103.9176 matched with DB +City: Folsom, state: California, Lat: 38.6668, Lng: -121.1422, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Folsom, New Mexico 36.8478 -103.9176 matched with DB +City: Folsom, state: Pennsylvania, Lat: 39.8924, Lng: -75.3287, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raymond, South Dakota 44.9105 -97.9372 matched with DB +City: Raymond, state: New Hampshire, Lat: 43.0322, Lng: -71.1994, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Liberty, Nebraska 40.0854 -96.4829 matched with DB +City: Liberty, state: New York, Lat: 41.8132, Lng: -74.7775, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Liberty, Nebraska 40.0854 -96.4829 matched with DB +City: Liberty, state: Missouri, Lat: 39.2394, Lng: -94.4191, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garrison, Nebraska 41.1755 -97.1630 matched with DB +City: Garrison, state: Maryland, Lat: 39.4023, Lng: -76.7514, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Webb City, Oklahoma 36.8074 -96.7119 matched with DB +City: Webb City, state: Missouri, Lat: 37.1412, Lng: -94.4676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hayward, Missouri 36.3959 -89.6669 matched with DB +City: Hayward, state: California, Lat: 37.6328, Lng: -122.0766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Newark, Missouri 39.9946 -91.9734 matched with DB +City: Newark, state: Ohio, Lat: 40.0706, Lng: -82.425, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Missouri 39.9946 -91.9734 matched with DB +City: Newark, state: New Jersey, Lat: 40.7245, Lng: -74.1725, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Missouri 39.9946 -91.9734 matched with DB +City: Newark, state: New York, Lat: 43.0418, Lng: -77.093, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Missouri 39.9946 -91.9734 matched with DB +City: Newark, state: Delaware, Lat: 39.6776, Lng: -75.7576, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Newark, Missouri 39.9946 -91.9734 matched with DB +City: Newark, state: California, Lat: 37.5201, Lng: -122.0307, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alexandria, Missouri 40.3598 -91.4595 matched with DB +City: Alexandria, state: Virginia, Lat: 38.8185, Lng: -77.0861, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Missouri 40.3598 -91.4595 matched with DB +City: Alexandria, state: Minnesota, Lat: 45.8776, Lng: -95.3767, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Missouri 40.3598 -91.4595 matched with DB +City: Alexandria, state: Kentucky, Lat: 38.9621, Lng: -84.3859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alexandria, Missouri 40.3598 -91.4595 matched with DB +City: Alexandria, state: Louisiana, Lat: 31.2923, Lng: -92.4702, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rochester, Iowa 41.6747 -91.1509 matched with DB +City: Rochester, state: New York, Lat: 43.168, Lng: -77.6162, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Iowa 41.6747 -91.1509 matched with DB +City: Rochester, state: Michigan, Lat: 42.6866, Lng: -83.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Iowa 41.6747 -91.1509 matched with DB +City: Rochester, state: New Hampshire, Lat: 43.299, Lng: -70.9787, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rochester, Iowa 41.6747 -91.1509 matched with DB +City: Rochester, state: Minnesota, Lat: 44.0154, Lng: -92.478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeton, Indiana 39.6450 -87.1775 matched with DB +City: Bridgeton, state: Missouri, Lat: 38.7673, Lng: -90.4275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeton, Indiana 39.6450 -87.1775 matched with DB +City: Bridgeton, state: New Jersey, Lat: 39.4286, Lng: -75.2281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Utah 38.4556 -111.6148 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Utah 38.4556 -111.6148 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Utah 38.4556 -111.6148 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Erie, North Dakota 47.1154 -97.3879 matched with DB +City: Erie, state: Pennsylvania, Lat: 42.1167, Lng: -80.0733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Erie, North Dakota 47.1154 -97.3879 matched with DB +City: Erie, state: Colorado, Lat: 40.0404, Lng: -105.0399, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sharon, Georgia 33.5601 -82.7950 matched with DB +City: Sharon, state: Pennsylvania, Lat: 41.234, Lng: -80.4998, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sharon, Georgia 33.5601 -82.7950 matched with DB +City: Sharon, state: Massachusetts, Lat: 42.1085, Lng: -71.183, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Bedford, Illinois 41.5114 -89.7181 matched with DB +City: New Bedford, state: Massachusetts, Lat: 41.6697, Lng: -70.9428, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antioch, Ohio 39.6610 -81.0669 matched with DB +City: Antioch, state: Illinois, Lat: 42.4742, Lng: -88.0721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Antioch, Ohio 39.6610 -81.0669 matched with DB +City: Antioch, state: California, Lat: 37.9787, Lng: -121.796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Deerfield, Missouri 37.8386 -94.5078 matched with DB +City: Deerfield, state: Illinois, Lat: 42.1654, Lng: -87.8516, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: Wisconsin, Lat: 42.603, Lng: -89.6381, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: Michigan, Lat: 41.9155, Lng: -83.3849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: New York, Lat: 41.3043, Lng: -74.1941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: Ohio, Lat: 39.4461, Lng: -84.3667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: North Carolina, Lat: 35.0063, Lng: -80.5596, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: Georgia, Lat: 33.799, Lng: -83.7161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: Louisiana, Lat: 32.5185, Lng: -92.0774, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: Washington, Lat: 47.8595, Lng: -121.9851, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Monroe, Arkansas 34.7341 -91.1067 matched with DB +City: Monroe, state: New Jersey, Lat: 40.3191, Lng: -74.4286, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, Minnesota 46.7105 -96.5579 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baldwin Park, Missouri 38.7938 -94.2465 matched with DB +City: Baldwin Park, state: California, Lat: 34.0829, Lng: -117.9722, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Warrington, Indiana 39.9075 -85.6339 matched with DB +City: Warrington, state: Florida, Lat: 30.3835, Lng: -87.2946, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Warrington, Indiana 39.9075 -85.6339 matched with DB +City: Warrington, state: Pennsylvania, Lat: 40.2489, Lng: -75.158, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Robinson, North Dakota 47.1421 -99.7817 matched with DB +City: Robinson, state: Texas, Lat: 31.4501, Lng: -97.1201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Robinson, North Dakota 47.1421 -99.7817 matched with DB +City: Robinson, state: Pennsylvania, Lat: 40.4578, Lng: -80.1334, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashland, Oklahoma 34.7668 -96.0706 matched with DB +City: Ashland, state: Ohio, Lat: 40.8668, Lng: -82.3156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oklahoma 34.7668 -96.0706 matched with DB +City: Ashland, state: Kentucky, Lat: 38.4592, Lng: -82.6448, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oklahoma 34.7668 -96.0706 matched with DB +City: Ashland, state: California, Lat: 37.6942, Lng: -122.1159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oklahoma 34.7668 -96.0706 matched with DB +City: Ashland, state: Oregon, Lat: 42.1905, Lng: -122.6992, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oklahoma 34.7668 -96.0706 matched with DB +City: Ashland, state: New Jersey, Lat: 39.8782, Lng: -75.0085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ashland, Oklahoma 34.7668 -96.0706 matched with DB +City: Ashland, state: Massachusetts, Lat: 42.2573, Lng: -71.4687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fresno, Ohio 40.3308 -81.7386 matched with DB +City: Fresno, state: Texas, Lat: 29.5357, Lng: -95.4696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fresno, Ohio 40.3308 -81.7386 matched with DB +City: Fresno, state: California, Lat: 36.783, Lng: -119.7939, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Edgewood, California 41.4620 -122.4260 matched with DB +City: Edgewood, state: Maryland, Lat: 39.419, Lng: -76.2964, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Edgewood, California 41.4620 -122.4260 matched with DB +City: Edgewood, state: Washington, Lat: 47.2309, Lng: -122.2832, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mill Creek, Illinois 37.3411 -89.2535 matched with DB +City: Mill Creek, state: Washington, Lat: 47.8631, Lng: -122.2037, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Washington 48.3357 -122.3444 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Washington 48.3357 -122.3444 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Washington 48.3357 -122.3444 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Washington 48.3357 -122.3444 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westport, Minnesota 45.7145 -95.1681 matched with DB +City: Westport, state: Massachusetts, Lat: 41.5886, Lng: -71.0837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Janesville, Illinois 39.3753 -88.2449 matched with DB +City: Janesville, state: Wisconsin, Lat: 42.6854, Lng: -89.0135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thornton, Wisconsin 44.7984 -88.6916 matched with DB +City: Thornton, state: Colorado, Lat: 39.9197, Lng: -104.9438, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alice, North Dakota 46.7600 -97.5562 matched with DB +City: Alice, state: Texas, Lat: 27.7556, Lng: -98.0653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Andover, South Dakota 45.4102 -97.9037 matched with DB +City: Andover, state: Minnesota, Lat: 45.2571, Lng: -93.3265, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, South Dakota 45.4102 -97.9037 matched with DB +City: Andover, state: Kansas, Lat: 37.6873, Lng: -97.1352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Andover, South Dakota 45.4102 -97.9037 matched with DB +City: Andover, state: Massachusetts, Lat: 42.6466, Lng: -71.1651, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dolton, South Dakota 43.4911 -97.3848 matched with DB +City: Dolton, state: Illinois, Lat: 41.6284, Lng: -87.5979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Ohio 40.0573 -81.2350 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elyria, Nebraska 41.6802 -99.0053 matched with DB +City: Elyria, state: Ohio, Lat: 41.376, Lng: -82.106, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mansfield, South Dakota 45.2465 -98.5581 matched with DB +City: Mansfield, state: Ohio, Lat: 40.7656, Lng: -82.5275, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, South Dakota 45.2465 -98.5581 matched with DB +City: Mansfield, state: Texas, Lat: 32.569, Lng: -97.1213, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, South Dakota 45.2465 -98.5581 matched with DB +City: Mansfield, state: Massachusetts, Lat: 42.0163, Lng: -71.2187, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Mansfield, South Dakota 45.2465 -98.5581 matched with DB +City: Mansfield, state: New Jersey, Lat: 40.0853, Lng: -74.7149, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loveland, Iowa 41.4971 -95.8902 matched with DB +City: Loveland, state: Ohio, Lat: 39.2677, Lng: -84.2733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Loveland, Iowa 41.4971 -95.8902 matched with DB +City: Loveland, state: Colorado, Lat: 40.4166, Lng: -105.0623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spartanburg, Indiana 40.0662 -84.8516 matched with DB +City: Spartanburg, state: South Carolina, Lat: 34.9442, Lng: -81.9251, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anderson, Iowa 40.7982 -95.6086 matched with DB +City: Anderson, state: Indiana, Lat: 40.0891, Lng: -85.6892, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Iowa 40.7982 -95.6086 matched with DB +City: Anderson, state: South Carolina, Lat: 34.5211, Lng: -82.6478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Anderson, Iowa 40.7982 -95.6086 matched with DB +City: Anderson, state: California, Lat: 40.4497, Lng: -122.295, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pulaski, Indiana 40.9753 -86.6583 matched with DB +City: Pulaski, state: Virginia, Lat: 37.0528, Lng: -80.7624, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Woodland, Maryland 39.6083 -78.9502 matched with DB +City: Woodland, state: California, Lat: 38.6712, Lng: -121.75, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, South Dakota 45.0608 -99.5092 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Oklahoma 33.9051 -96.2214 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, Montana 45.7045 -111.7844 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Montana 45.7045 -111.7844 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Montana 45.7045 -111.7844 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Montana 45.7045 -111.7844 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Montana 45.7045 -111.7844 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, Montana 45.7045 -111.7844 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rogers, North Dakota 47.0740 -98.2031 matched with DB +City: Rogers, state: Minnesota, Lat: 45.1865, Lng: -93.5783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rogers, North Dakota 47.0740 -98.2031 matched with DB +City: Rogers, state: Arkansas, Lat: 36.317, Lng: -94.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Placerville, Idaho 43.9427 -115.9460 matched with DB +City: Placerville, state: California, Lat: 38.7308, Lng: -120.7979, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollister, Oklahoma 34.3408 -98.8712 matched with DB +City: Hollister, state: California, Lat: 36.8555, Lng: -121.3986, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worth, Missouri 40.4045 -94.4465 matched with DB +City: Worth, state: Illinois, Lat: 41.6877, Lng: -87.7916, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sutton, North Dakota 47.4038 -98.4412 matched with DB +City: Sutton, state: Massachusetts, Lat: 42.1337, Lng: -71.7503, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Columbia, Virginia 37.7538 -78.1632 matched with DB +City: Columbia, state: Pennsylvania, Lat: 40.0347, Lng: -76.4944, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Virginia 37.7538 -78.1632 matched with DB +City: Columbia, state: Maryland, Lat: 39.2004, Lng: -76.859, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Virginia 37.7538 -78.1632 matched with DB +City: Columbia, state: Missouri, Lat: 38.9472, Lng: -92.3268, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Virginia 37.7538 -78.1632 matched with DB +City: Columbia, state: Illinois, Lat: 38.4581, Lng: -90.2156, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Virginia 37.7538 -78.1632 matched with DB +City: Columbia, state: Tennessee, Lat: 35.6238, Lng: -87.0484, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Columbia, Virginia 37.7538 -78.1632 matched with DB +City: Columbia, state: South Carolina, Lat: 34.0378, Lng: -80.9036, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Williamstown, Missouri 40.2409 -91.7977 matched with DB +City: Williamstown, state: New Jersey, Lat: 39.6874, Lng: -74.9786, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pendleton, Missouri 38.8326 -91.2305 matched with DB +City: Pendleton, state: Oregon, Lat: 45.6757, Lng: -118.8201, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rose Hill, Illinois 39.1042 -88.1497 matched with DB +City: Rose Hill, state: Virginia, Lat: 38.7872, Lng: -77.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Nebraska 41.1108 -96.0763 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Nebraska 41.1108 -96.0763 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Beaumont, Kansas 37.6565 -96.5316 matched with DB +City: Beaumont, state: California, Lat: 33.9076, Lng: -116.9766, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Beaumont, Kansas 37.6565 -96.5316 matched with DB +City: Beaumont, state: Texas, Lat: 30.0849, Lng: -94.1451, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden, Oklahoma 34.0312 -94.8978 matched with DB +City: Golden, state: Colorado, Lat: 39.7406, Lng: -105.2118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Prattville, California 40.2060 -121.1575 matched with DB +City: Prattville, state: Alabama, Lat: 32.4597, Lng: -86.4573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corinth, Arkansas 35.0693 -93.4235 matched with DB +City: Corinth, state: Mississippi, Lat: 34.9474, Lng: -88.5143, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Corinth, Arkansas 35.0693 -93.4235 matched with DB +City: Corinth, state: Texas, Lat: 33.1434, Lng: -97.0682, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lewiston, Nebraska 40.2429 -96.4074 matched with DB +City: Lewiston, state: Maine, Lat: 44.0915, Lng: -70.1681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Nebraska 40.2429 -96.4074 matched with DB +City: Lewiston, state: New York, Lat: 43.1793, Lng: -78.971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lewiston, Nebraska 40.2429 -96.4074 matched with DB +City: Lewiston, state: Idaho, Lat: 46.3934, Lng: -116.9933, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Illinois 39.7536 -88.7184 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westland, Pennsylvania 40.2789 -80.2731 matched with DB +City: Westland, state: Michigan, Lat: 42.3192, Lng: -83.3805, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Adams, Illinois 39.8708 -91.1998 matched with DB +City: Adams, state: Pennsylvania, Lat: 40.7092, Lng: -80.0118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Craig, Montana 47.0745 -111.9644 matched with DB +City: Craig, state: Colorado, Lat: 40.5171, Lng: -107.5554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scott, Mississippi 33.5945 -91.0760 matched with DB +City: Scott, state: Pennsylvania, Lat: 40.3875, Lng: -80.0791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altamont, South Dakota 44.8408 -96.6901 matched with DB +City: Altamont, state: Oregon, Lat: 42.198, Lng: -121.7248, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Vermont 43.2904 -72.7922 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Vermont 43.2904 -72.7922 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Vermont 43.2904 -72.7922 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sedalia, Colorado 39.4396 -104.9699 matched with DB +City: Sedalia, state: Missouri, Lat: 38.7059, Lng: -93.234, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Delhi, Minnesota 44.5980 -95.2134 matched with DB +City: Delhi, state: California, Lat: 37.4306, Lng: -120.7759, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oxford, Idaho 42.2598 -112.0178 matched with DB +City: Oxford, state: Ohio, Lat: 39.5061, Lng: -84.7446, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Idaho 42.2598 -112.0178 matched with DB +City: Oxford, state: North Carolina, Lat: 36.3155, Lng: -78.5848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Idaho 42.2598 -112.0178 matched with DB +City: Oxford, state: Mississippi, Lat: 34.3627, Lng: -89.5336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Idaho 42.2598 -112.0178 matched with DB +City: Oxford, state: Alabama, Lat: 33.5967, Lng: -85.8687, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oxford, Idaho 42.2598 -112.0178 matched with DB +City: Oxford, state: Massachusetts, Lat: 42.1286, Lng: -71.8665, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Frederick, Kansas 38.5127 -98.2673 matched with DB +City: Frederick, state: Maryland, Lat: 39.4337, Lng: -77.4141, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Frederick, Kansas 38.5127 -98.2673 matched with DB +City: Frederick, state: Colorado, Lat: 40.1088, Lng: -104.9701, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, Missouri 40.5749 -95.2109 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: New Jersey, Lat: 40.0641, Lng: -74.8394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: Vermont, Lat: 44.4876, Lng: -73.2316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: Wisconsin, Lat: 42.6744, Lng: -88.2721, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: Iowa, Lat: 40.8071, Lng: -91.1247, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: Kentucky, Lat: 39.0223, Lng: -84.7217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: North Carolina, Lat: 36.076, Lng: -79.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: Washington, Lat: 48.4676, Lng: -122.3298, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Burlington, Texas 31.0047 -96.9915 matched with DB +City: Burlington, state: Massachusetts, Lat: 42.5022, Lng: -71.2027, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durham, Oklahoma 35.8427 -99.9264 matched with DB +City: Durham, state: North Carolina, Lat: 35.9792, Lng: -78.9022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Durham, Oklahoma 35.8427 -99.9264 matched with DB +City: Durham, state: New Hampshire, Lat: 43.1174, Lng: -70.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Unity, Oregon 44.4491 -118.1881 matched with DB +City: Unity, state: Pennsylvania, Lat: 40.2811, Lng: -79.4236, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bethany, Indiana 39.5337 -86.3776 matched with DB +City: Bethany, state: Oklahoma, Lat: 35.5071, Lng: -97.6418, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bethany, Indiana 39.5337 -86.3776 matched with DB +City: Bethany, state: Oregon, Lat: 45.5614, Lng: -122.837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: McKinney, Kentucky 37.4531 -84.7577 matched with DB +City: McKinney, state: Texas, Lat: 33.2016, Lng: -96.667, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fulton, Wisconsin 42.8074 -89.1269 matched with DB +City: Fulton, state: New York, Lat: 43.3171, Lng: -76.4167, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fulton, Wisconsin 42.8074 -89.1269 matched with DB +City: Fulton, state: Missouri, Lat: 38.8551, Lng: -91.951, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Anoka, Nebraska 42.9460 -98.8285 matched with DB +City: Anoka, state: Minnesota, Lat: 45.2099, Lng: -93.3893, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Camas, Montana 47.6179 -114.6561 matched with DB +City: Camas, state: Washington, Lat: 45.6005, Lng: -122.4304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Nashville, Kansas 37.4384 -98.4227 matched with DB +City: Nashville, state: Tennessee, Lat: 36.1715, Lng: -86.7842, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredericksburg, Indiana 38.4353 -86.1970 matched with DB +City: Fredericksburg, state: Virginia, Lat: 38.2992, Lng: -77.4872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fredericksburg, Indiana 38.4353 -86.1970 matched with DB +City: Fredericksburg, state: Texas, Lat: 30.266, Lng: -98.8751, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairburn, South Dakota 43.6869 -103.2087 matched with DB +City: Fairburn, state: Georgia, Lat: 33.5496, Lng: -84.5914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raynham, North Carolina 34.5761 -79.1908 matched with DB +City: Raynham, state: Massachusetts, Lat: 41.9312, Lng: -71.0437, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gardena, North Dakota 48.7012 -100.4981 matched with DB +City: Gardena, state: California, Lat: 33.8943, Lng: -118.3072, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, West Virginia 39.0961 -80.8562 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Kansas 39.1145 -98.9184 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sanford, Virginia 37.9299 -75.6620 matched with DB +City: Sanford, state: Maine, Lat: 43.4244, Lng: -70.7573, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Virginia 37.9299 -75.6620 matched with DB +City: Sanford, state: North Carolina, Lat: 35.4875, Lng: -79.177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sanford, Virginia 37.9299 -75.6620 matched with DB +City: Sanford, state: Florida, Lat: 28.7891, Lng: -81.2757, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Riverside, Wyoming 41.2154 -106.7813 matched with DB +City: Riverside, state: Illinois, Lat: 41.831, Lng: -87.8169, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Wyoming 41.2154 -106.7813 matched with DB +City: Riverside, state: Ohio, Lat: 39.7835, Lng: -84.1219, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Wyoming 41.2154 -106.7813 matched with DB +City: Riverside, state: California, Lat: 33.9381, Lng: -117.3949, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Riverside, Wyoming 41.2154 -106.7813 matched with DB +City: Riverside, state: Connecticut, Lat: 41.0318, Lng: -73.5827, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Zion, Oklahoma 35.7892 -94.6377 matched with DB +City: Zion, state: Illinois, Lat: 42.4603, Lng: -87.8511, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Yorktown, Iowa 40.7353 -95.1544 matched with DB +City: Yorktown, state: Indiana, Lat: 40.183, Lng: -85.5123, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Yorktown, Iowa 40.7353 -95.1544 matched with DB +City: Yorktown, state: New York, Lat: 41.2727, Lng: -73.8092, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Hope, Kentucky 37.6279 -85.5067 matched with DB +City: New Hope, state: Minnesota, Lat: 45.0375, Lng: -93.3869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norman, Nebraska 40.4790 -98.7922 matched with DB +City: Norman, state: Oklahoma, Lat: 35.2335, Lng: -97.3471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kingston, Iowa 40.9792 -91.0458 matched with DB +City: Kingston, state: New York, Lat: 41.9295, Lng: -73.9968, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Iowa 40.9792 -91.0458 matched with DB +City: Kingston, state: Pennsylvania, Lat: 41.2652, Lng: -75.8876, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kingston, Iowa 40.9792 -91.0458 matched with DB +City: Kingston, state: Massachusetts, Lat: 41.9862, Lng: -70.7482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Worthington, Missouri 40.4085 -92.6892 matched with DB +City: Worthington, state: Minnesota, Lat: 43.6281, Lng: -95.599, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Worthington, Missouri 40.4085 -92.6892 matched with DB +City: Worthington, state: Ohio, Lat: 40.095, Lng: -83.0209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silverdale, Kansas 37.0424 -96.9018 matched with DB +City: Silverdale, state: Washington, Lat: 47.6663, Lng: -122.6828, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Surprise, Nebraska 41.1047 -97.3085 matched with DB +City: Surprise, state: Arizona, Lat: 33.6815, Lng: -112.4515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ada, Kansas 39.1622 -97.8860 matched with DB +City: Ada, state: Oklahoma, Lat: 34.7662, Lng: -96.6681, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, Iowa 40.5803 -95.2213 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brewster, Nebraska 41.9384 -99.8651 matched with DB +City: Brewster, state: Massachusetts, Lat: 41.7463, Lng: -70.0676, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Topeka, Illinois 40.3304 -89.9306 matched with DB +City: Topeka, state: Kansas, Lat: 39.0346, Lng: -95.6955, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherman, Connecticut 41.5746 -73.4957 matched with DB +City: Sherman, state: Texas, Lat: 33.6273, Lng: -96.6221, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Douglas, Oklahoma 36.2605 -97.6666 matched with DB +City: Douglas, state: Georgia, Lat: 31.5065, Lng: -82.8544, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Oklahoma 36.2605 -97.6666 matched with DB +City: Douglas, state: Arizona, Lat: 31.3602, Lng: -109.5394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Douglas, Oklahoma 36.2605 -97.6666 matched with DB +City: Douglas, state: Massachusetts, Lat: 42.0524, Lng: -71.7515, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, Oklahoma 36.1500 -98.3969 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, California 41.6460 -120.2255 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hatfield, Minnesota 43.9546 -96.1905 matched with DB +City: Hatfield, state: Pennsylvania, Lat: 40.2758, Lng: -75.2895, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Midway, Minnesota 47.3170 -95.7838 matched with DB +City: Midway, state: Florida, Lat: 30.4169, Lng: -87.0229, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Athol, Kansas 39.7663 -98.9196 matched with DB +City: Athol, state: Massachusetts, Lat: 42.5841, Lng: -72.2177, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Peoria, Oregon 44.4508 -123.2043 matched with DB +City: Peoria, state: Illinois, Lat: 40.752, Lng: -89.6154, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Peoria, Oregon 44.4508 -123.2043 matched with DB +City: Peoria, state: Arizona, Lat: 33.7843, Lng: -112.2989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Weston, Colorado 37.1460 -104.8683 matched with DB +City: Weston, state: Florida, Lat: 26.1006, Lng: -80.4054, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Colorado 37.1460 -104.8683 matched with DB +City: Weston, state: Wisconsin, Lat: 44.8906, Lng: -89.5487, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Weston, Colorado 37.1460 -104.8683 matched with DB +City: Weston, state: Massachusetts, Lat: 42.3589, Lng: -71.3001, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Great Bend, North Dakota 46.1546 -96.8010 matched with DB +City: Great Bend, state: Kansas, Lat: 38.3593, Lng: -98.8015, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sheffield, Texas 30.6859 -101.8224 matched with DB +City: Sheffield, state: Alabama, Lat: 34.757, Lng: -87.6977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hillsdale, Wyoming 41.2079 -104.4744 matched with DB +City: Hillsdale, state: New Jersey, Lat: 41.0074, Lng: -74.044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Atlantic City, Wyoming 42.5012 -108.7330 matched with DB +City: Atlantic City, state: New Jersey, Lat: 39.3797, Lng: -74.4527, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, Iowa 40.7492 -94.6200 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Iowa 40.7492 -94.6200 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Iowa 40.7492 -94.6200 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, Iowa 40.7492 -94.6200 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamilton, North Dakota 48.8080 -97.4518 matched with DB +City: Hamilton, state: Ohio, Lat: 39.3939, Lng: -84.5653, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, North Dakota 48.8080 -97.4518 matched with DB +City: Hamilton, state: New Jersey, Lat: 40.2046, Lng: -74.6765, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, North Dakota 48.8080 -97.4518 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 40.9334, Lng: -75.2844, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Hamilton, North Dakota 48.8080 -97.4518 matched with DB +City: Hamilton, state: Pennsylvania, Lat: 39.9432, Lng: -77.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huron, Kansas 39.6384 -95.3512 matched with DB +City: Huron, state: South Dakota, Lat: 44.3623, Lng: -98.2094, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: LaGrange, Arkansas 34.6555 -90.7349 matched with DB +City: LaGrange, state: Georgia, Lat: 33.0274, Lng: -85.0384, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Seneca, Nebraska 42.0440 -100.8321 matched with DB +City: Seneca, state: South Carolina, Lat: 34.6818, Lng: -82.96, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berea, Nebraska 42.2123 -102.9830 matched with DB +City: Berea, state: Ohio, Lat: 41.3696, Lng: -81.8641, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, Nebraska 42.2123 -102.9830 matched with DB +City: Berea, state: Kentucky, Lat: 37.5904, Lng: -84.2898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berea, Nebraska 42.2123 -102.9830 matched with DB +City: Berea, state: South Carolina, Lat: 34.8802, Lng: -82.465, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hampden, North Dakota 48.5395 -98.6542 matched with DB +City: Hampden, state: Pennsylvania, Lat: 40.2602, Lng: -76.9809, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rosedale, Oklahoma 34.9188 -97.1848 matched with DB +City: Rosedale, state: Maryland, Lat: 39.3266, Lng: -76.5084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Rosedale, Oklahoma 34.9188 -97.1848 matched with DB +City: Rosedale, state: California, Lat: 35.3886, Lng: -119.2058, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jerome, Indiana 40.4553 -85.9308 matched with DB +City: Jerome, state: Idaho, Lat: 42.7179, Lng: -114.5159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Saratoga, Arkansas 33.7446 -93.9043 matched with DB +City: Saratoga, state: California, Lat: 37.2684, Lng: -122.0263, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vista, Missouri 37.9891 -93.6637 matched with DB +City: Vista, state: California, Lat: 33.1896, Lng: -117.2386, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Youngstown, California 37.6481 -119.7182 matched with DB +City: Youngstown, state: Ohio, Lat: 41.0993, Lng: -80.6463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kent, Minnesota 46.4374 -96.6833 matched with DB +City: Kent, state: Ohio, Lat: 41.149, Lng: -81.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Minnesota 46.4374 -96.6833 matched with DB +City: Kent, state: Washington, Lat: 47.3887, Lng: -122.2128, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Minnesota 46.4374 -96.6833 matched with DB +City: Kent, state: New York, Lat: 41.4735, Lng: -73.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Smyrna, South Carolina 35.0420 -81.4094 matched with DB +City: Smyrna, state: Delaware, Lat: 39.2935, Lng: -75.6083, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, South Carolina 35.0420 -81.4094 matched with DB +City: Smyrna, state: Georgia, Lat: 33.8633, Lng: -84.5168, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Smyrna, South Carolina 35.0420 -81.4094 matched with DB +City: Smyrna, state: Tennessee, Lat: 35.9687, Lng: -86.5264, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Portland, Iowa 43.1254 -93.1351 matched with DB +City: Portland, state: Maine, Lat: 43.6773, Lng: -70.2715, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Iowa 43.1254 -93.1351 matched with DB +City: Portland, state: Tennessee, Lat: 36.5921, Lng: -86.5239, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Iowa 43.1254 -93.1351 matched with DB +City: Portland, state: Oregon, Lat: 45.5371, Lng: -122.65, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Portland, Iowa 43.1254 -93.1351 matched with DB +City: Portland, state: Texas, Lat: 27.8942, Lng: -97.3278, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Detroit, Illinois 39.6202 -90.6759 matched with DB +City: Detroit, state: Michigan, Lat: 42.3834, Lng: -83.1024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windsor, Indiana 40.1545 -85.2127 matched with DB +City: Windsor, state: Wisconsin, Lat: 43.2405, Lng: -89.2948, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Indiana 40.1545 -85.2127 matched with DB +City: Windsor, state: Colorado, Lat: 40.469, Lng: -104.9198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windsor, Indiana 40.1545 -85.2127 matched with DB +City: Windsor, state: California, Lat: 38.5422, Lng: -122.8089, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Alabama 32.3078 -86.8180 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brandon, Colorado 38.4464 -102.4412 matched with DB +City: Brandon, state: South Dakota, Lat: 43.5928, Lng: -96.5799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Colorado 38.4464 -102.4412 matched with DB +City: Brandon, state: Mississippi, Lat: 32.2778, Lng: -89.9896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brandon, Colorado 38.4464 -102.4412 matched with DB +City: Brandon, state: Florida, Lat: 27.9367, Lng: -82.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Evansville, Alaska 66.9206 -151.4201 matched with DB +City: Evansville, state: Indiana, Lat: 37.9881, Lng: -87.5341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntersville, West Virginia 38.1860 -80.0152 matched with DB +City: Huntersville, state: North Carolina, Lat: 35.406, Lng: -80.8716, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Taylorsville, California 40.0586 -120.8387 matched with DB +City: Taylorsville, state: Utah, Lat: 40.6569, Lng: -111.9493, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Venice, Nebraska 41.2390 -96.3526 matched with DB +City: Venice, state: Florida, Lat: 27.1184, Lng: -82.4137, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Altoona, Florida 28.9681 -81.6482 matched with DB +City: Altoona, state: Pennsylvania, Lat: 40.5082, Lng: -78.4007, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Florida 28.9681 -81.6482 matched with DB +City: Altoona, state: Wisconsin, Lat: 44.8029, Lng: -91.4385, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Altoona, Florida 28.9681 -81.6482 matched with DB +City: Altoona, state: Iowa, Lat: 41.6483, Lng: -93.4783, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Inkster, North Dakota 48.1513 -97.6442 matched with DB +City: Inkster, state: Michigan, Lat: 42.2935, Lng: -83.3148, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Meridian, Oklahoma 35.8442 -97.2456 matched with DB +City: Meridian, state: Mississippi, Lat: 32.3846, Lng: -88.6896, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Meridian, Oklahoma 35.8442 -97.2456 matched with DB +City: Meridian, state: Idaho, Lat: 43.6116, Lng: -116.3977, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mineola, Iowa 41.1414 -95.6947 matched with DB +City: Mineola, state: New York, Lat: 40.747, Lng: -73.6394, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fredonia, North Dakota 46.3291 -99.0955 matched with DB +City: Fredonia, state: New York, Lat: 42.4407, Lng: -79.3319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Norristown, Georgia 32.5064 -82.4982 matched with DB +City: Norristown, state: Pennsylvania, Lat: 40.1225, Lng: -75.3398, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Girard, Texas 33.3636 -100.6598 matched with DB +City: Girard, state: Ohio, Lat: 41.1665, Lng: -80.6963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Kansas 37.2860 -97.8921 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kansas 37.2860 -97.8921 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kansas 37.2860 -97.8921 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kansas 37.2860 -97.8921 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Kansas 37.2860 -97.8921 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Independence, Indiana 40.3378 -87.1717 matched with DB +City: Independence, state: Kansas, Lat: 37.2119, Lng: -95.7327, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Indiana 40.3378 -87.1717 matched with DB +City: Independence, state: Missouri, Lat: 39.0871, Lng: -94.3501, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Indiana 40.3378 -87.1717 matched with DB +City: Independence, state: Kentucky, Lat: 38.951, Lng: -84.5492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Independence, Indiana 40.3378 -87.1717 matched with DB +City: Independence, state: Oregon, Lat: 44.8547, Lng: -123.1952, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roscoe, Montana 45.3517 -109.4932 matched with DB +City: Roscoe, state: Illinois, Lat: 42.4256, Lng: -89.0084, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Memphis, Alabama 33.1369 -88.3008 matched with DB +City: Memphis, state: Florida, Lat: 27.5435, Lng: -82.5608, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Memphis, Alabama 33.1369 -88.3008 matched with DB +City: Memphis, state: Tennessee, Lat: 35.1087, Lng: -89.9663, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spencer, Idaho 44.3770 -112.1897 matched with DB +City: Spencer, state: Iowa, Lat: 43.1468, Lng: -95.1534, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Spencer, Idaho 44.3770 -112.1897 matched with DB +City: Spencer, state: Massachusetts, Lat: 42.2471, Lng: -71.9919, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamburg, Indiana 39.3809 -85.2508 matched with DB +City: Hamburg, state: New York, Lat: 42.7394, Lng: -78.8581, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Big Spring, Maryland 39.6257 -77.9396 matched with DB +City: Big Spring, state: Texas, Lat: 32.2389, Lng: -101.4799, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Scott, Arkansas 34.6966 -92.0938 matched with DB +City: Scott, state: Pennsylvania, Lat: 40.3875, Lng: -80.0791, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Benton, Iowa 40.7047 -94.3608 matched with DB +City: Benton, state: Arkansas, Lat: 34.5776, Lng: -92.5713, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Windham, Montana 47.0781 -110.1386 matched with DB +City: Windham, state: New Hampshire, Lat: 42.8076, Lng: -71.2995, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Windham, Montana 47.0781 -110.1386 matched with DB +City: Windham, state: Maine, Lat: 43.7981, Lng: -70.4056, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lancaster, Virginia 37.7675 -76.4549 matched with DB +City: Lancaster, state: Pennsylvania, Lat: 40.042, Lng: -76.3012, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Virginia 37.7675 -76.4549 matched with DB +City: Lancaster, state: Ohio, Lat: 39.7248, Lng: -82.6049, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Virginia 37.7675 -76.4549 matched with DB +City: Lancaster, state: New York, Lat: 42.9099, Lng: -78.6378, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Virginia 37.7675 -76.4549 matched with DB +City: Lancaster, state: South Carolina, Lat: 34.7248, Lng: -80.7804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Virginia 37.7675 -76.4549 matched with DB +City: Lancaster, state: California, Lat: 34.6935, Lng: -118.1753, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lancaster, Virginia 37.7675 -76.4549 matched with DB +City: Lancaster, state: Texas, Lat: 32.5922, Lng: -96.7739, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Mateo, New Mexico 35.3381 -107.6450 matched with DB +City: San Mateo, state: California, Lat: 37.5522, Lng: -122.3121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, Missouri 37.5864 -94.1581 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Missouri 37.5864 -94.1581 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Missouri 37.5864 -94.1581 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, Missouri 37.5864 -94.1581 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Denver, Missouri 40.3989 -94.3233 matched with DB +City: Denver, state: Colorado, Lat: 39.762, Lng: -104.8758, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Keystone, Nebraska 41.2187 -101.5841 matched with DB +City: Keystone, state: Florida, Lat: 28.1312, Lng: -82.5999, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Golden, New Mexico 35.2637 -106.2230 matched with DB +City: Golden, state: Colorado, Lat: 39.7406, Lng: -105.2118, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dennis, Mississippi 34.5590 -88.2303 matched with DB +City: Dennis, state: Massachusetts, Lat: 41.7064, Lng: -70.1644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waverly, South Dakota 44.9987 -96.9742 matched with DB +City: Waverly, state: Iowa, Lat: 42.725, Lng: -92.4708, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waverly, South Dakota 44.9987 -96.9742 matched with DB +City: Waverly, state: Michigan, Lat: 42.7401, Lng: -84.6354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macedonia, Illinois 38.0525 -88.7054 matched with DB +City: Macedonia, state: Ohio, Lat: 41.3147, Lng: -81.4989, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, Nevada 39.0150 -114.1233 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Randolph, Missouri 39.1560 -94.4929 matched with DB +City: Randolph, state: Massachusetts, Lat: 42.1778, Lng: -71.0539, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Randolph, Missouri 39.1560 -94.4929 matched with DB +City: Randolph, state: New Jersey, Lat: 40.8434, Lng: -74.5819, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Urbana, Kansas 37.5580 -95.3999 matched with DB +City: Urbana, state: Illinois, Lat: 40.1107, Lng: -88.1973, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Kansas 37.5580 -95.3999 matched with DB +City: Urbana, state: Ohio, Lat: 40.1085, Lng: -83.7541, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Urbana, Kansas 37.5580 -95.3999 matched with DB +City: Urbana, state: Maryland, Lat: 39.3274, Lng: -77.3423, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sandusky, Indiana 39.4195 -85.4780 matched with DB +City: Sandusky, state: Ohio, Lat: 41.4468, Lng: -82.7024, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: New Richmond, West Virginia 37.5734 -81.4870 matched with DB +City: New Richmond, state: Wisconsin, Lat: 45.125, Lng: -92.5377, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clay, Texas 30.3883 -96.3460 matched with DB +City: Clay, state: Alabama, Lat: 33.6951, Lng: -86.609, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clay, Texas 30.3883 -96.3460 matched with DB +City: Clay, state: New York, Lat: 43.1808, Lng: -76.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Utica, Montana 46.9678 -110.0935 matched with DB +City: Utica, state: New York, Lat: 43.0962, Lng: -75.2261, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Kansas 37.2653 -101.7828 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Kansas 37.2653 -101.7828 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Cloud, Missouri 38.1732 -91.2127 matched with DB +City: St. Cloud, state: Minnesota, Lat: 45.534, Lng: -94.1718, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Cloud, Missouri 38.1732 -91.2127 matched with DB +City: St. Cloud, state: Florida, Lat: 28.2363, Lng: -81.2779, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksburg, Indiana 39.4352 -85.3473 matched with DB +City: Clarksburg, state: West Virginia, Lat: 39.2862, Lng: -80.3232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksburg, Indiana 39.4352 -85.3473 matched with DB +City: Clarksburg, state: Maryland, Lat: 39.2246, Lng: -77.2659, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mound, Louisiana 32.3330 -91.0241 matched with DB +City: Mound, state: Minnesota, Lat: 44.9328, Lng: -93.6591, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Boulder, Wyoming 42.7461 -109.7067 matched with DB +City: Boulder, state: Colorado, Lat: 40.0248, Lng: -105.2524, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakewood, Illinois 39.3235 -88.8981 matched with DB +City: Lakewood, state: Ohio, Lat: 41.4822, Lng: -81.8008, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 39.3235 -88.8981 matched with DB +City: Lakewood, state: Washington, Lat: 47.1628, Lng: -122.5299, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 39.3235 -88.8981 matched with DB +City: Lakewood, state: Colorado, Lat: 39.6977, Lng: -105.1172, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 39.3235 -88.8981 matched with DB +City: Lakewood, state: California, Lat: 33.8471, Lng: -118.1222, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakewood, Illinois 39.3235 -88.8981 matched with DB +City: Lakewood, state: New Jersey, Lat: 40.0763, Lng: -74.2031, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Macomb, Oklahoma 35.1479 -97.0086 matched with DB +City: Macomb, state: Illinois, Lat: 40.4709, Lng: -90.6807, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Potomac, Montana 46.8813 -113.5751 matched with DB +City: Potomac, state: Maryland, Lat: 39.0141, Lng: -77.1943, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lawton, North Dakota 48.3036 -98.3684 matched with DB +City: Lawton, state: Oklahoma, Lat: 34.6175, Lng: -98.4202, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Livonia, Missouri 40.4920 -92.7005 matched with DB +City: Livonia, state: Michigan, Lat: 42.3972, Lng: -83.3733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Elmira, Missouri 39.5087 -94.1546 matched with DB +City: Elmira, state: New York, Lat: 42.0938, Lng: -76.8097, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rye, Arizona 34.0979 -111.3542 matched with DB +City: Rye, state: New York, Lat: 41.0075, Lng: -73.6872, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Westerville, Nebraska 41.3962 -99.3818 matched with DB +City: Westerville, state: Ohio, Lat: 40.1241, Lng: -82.921, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ocean, Maryland 39.6016 -78.9450 matched with DB +City: Ocean, state: New Jersey, Lat: 40.252, Lng: -74.0392, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Manhattan Beach, Minnesota 46.7370 -94.1396 matched with DB +City: Manhattan Beach, state: California, Lat: 33.8894, Lng: -118.3967, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Albany, Wyoming 41.1869 -106.1255 matched with DB +City: Albany, state: New York, Lat: 42.6664, Lng: -73.7987, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Wyoming 41.1869 -106.1255 matched with DB +City: Albany, state: Georgia, Lat: 31.5776, Lng: -84.1762, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Wyoming 41.1869 -106.1255 matched with DB +City: Albany, state: Oregon, Lat: 44.6272, Lng: -123.0965, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Albany, Wyoming 41.1869 -106.1255 matched with DB +City: Albany, state: California, Lat: 37.8897, Lng: -122.3018, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Durango, Iowa 42.5618 -90.7762 matched with DB +City: Durango, state: Colorado, Lat: 37.2659, Lng: -107.8781, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Nevada 39.4976 -117.0740 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Nevada 39.4976 -117.0740 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Needham, Indiana 39.5300 -85.9711 matched with DB +City: Needham, state: Massachusetts, Lat: 42.2814, Lng: -71.2411, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Michigan, Lat: 42.2431, Lng: -84.4038, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Missouri, Lat: 37.3792, Lng: -89.6522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Tennessee, Lat: 35.6538, Lng: -88.8354, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Mississippi, Lat: 32.3157, Lng: -90.2125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Wyoming, Lat: 43.472, Lng: -110.7746, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: New Jersey, Lat: 40.098, Lng: -74.3578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Pennsylvania, Lat: 40.3774, Lng: -76.3142, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jackson, Montana 45.3679 -113.4097 matched with DB +City: Jackson, state: Pennsylvania, Lat: 39.9057, Lng: -76.8796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, Montana 48.4202 -104.5369 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mentone, Texas 31.7073 -103.5989 matched with DB +City: Mentone, state: California, Lat: 34.0609, Lng: -117.1108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Draper, South Dakota 43.9262 -100.5372 matched with DB +City: Draper, state: Utah, Lat: 40.4957, Lng: -111.8605, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clayton, Idaho 44.2591 -114.3880 matched with DB +City: Clayton, state: New Jersey, Lat: 39.6627, Lng: -75.0782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Idaho 44.2591 -114.3880 matched with DB +City: Clayton, state: Missouri, Lat: 38.6444, Lng: -90.3303, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Idaho 44.2591 -114.3880 matched with DB +City: Clayton, state: Ohio, Lat: 39.8689, Lng: -84.3292, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Idaho 44.2591 -114.3880 matched with DB +City: Clayton, state: North Carolina, Lat: 35.659, Lng: -78.4498, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clayton, Idaho 44.2591 -114.3880 matched with DB +City: Clayton, state: California, Lat: 37.9404, Lng: -121.9301, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: River Forest, Indiana 40.1106 -85.7292 matched with DB +City: River Forest, state: Illinois, Lat: 41.895, Lng: -87.8194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sunrise, Alaska 60.8701 -149.4678 matched with DB +City: Sunrise, state: Florida, Lat: 26.1547, Lng: -80.2997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Johnstown, Nebraska 42.5721 -100.0563 matched with DB +City: Johnstown, state: Pennsylvania, Lat: 40.326, Lng: -78.9194, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Johnstown, Nebraska 42.5721 -100.0563 matched with DB +City: Johnstown, state: Colorado, Lat: 40.3499, Lng: -104.9482, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Minnesota 44.2372 -96.0516 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Minnesota 44.2372 -96.0516 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Minnesota 44.2372 -96.0516 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Minnesota 44.2372 -96.0516 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Minnesota 44.2372 -96.0516 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Minnesota 44.2372 -96.0516 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hamlin, Kansas 39.9156 -95.6275 matched with DB +City: Hamlin, state: New York, Lat: 43.3213, Lng: -77.9135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: York, North Dakota 48.3132 -99.5733 matched with DB +City: York, state: Pennsylvania, Lat: 39.9651, Lng: -76.7315, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, North Dakota 48.3132 -99.5733 matched with DB +City: York, state: South Carolina, Lat: 34.9967, Lng: -81.2341, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: York, North Dakota 48.3132 -99.5733 matched with DB +City: York, state: Maine, Lat: 43.186, Lng: -70.666, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bryant, Oklahoma 35.3923 -96.0624 matched with DB +City: Bryant, state: Arkansas, Lat: 34.6152, Lng: -92.4914, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mechanicsburg, Virginia 37.1520 -80.9411 matched with DB +City: Mechanicsburg, state: Pennsylvania, Lat: 40.2115, Lng: -77.006, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Conway, North Dakota 48.2343 -97.6751 matched with DB +City: Conway, state: Florida, Lat: 28.4968, Lng: -81.3316, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, North Dakota 48.2343 -97.6751 matched with DB +City: Conway, state: Arkansas, Lat: 35.0753, Lng: -92.4692, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, North Dakota 48.2343 -97.6751 matched with DB +City: Conway, state: South Carolina, Lat: 33.8401, Lng: -79.0431, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Conway, North Dakota 48.2343 -97.6751 matched with DB +City: Conway, state: New Hampshire, Lat: 44.0085, Lng: -71.0719, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Springdale, Montana 45.7381 -110.2236 matched with DB +City: Springdale, state: Ohio, Lat: 39.2909, Lng: -84.476, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Montana 45.7381 -110.2236 matched with DB +City: Springdale, state: Arkansas, Lat: 36.1901, Lng: -94.1574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Springdale, Montana 45.7381 -110.2236 matched with DB +City: Springdale, state: New Jersey, Lat: 39.8769, Lng: -74.9724, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alton, Indiana 38.1211 -86.4195 matched with DB +City: Alton, state: Illinois, Lat: 38.9037, Lng: -90.152, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Alton, Indiana 38.1211 -86.4195 matched with DB +City: Alton, state: Texas, Lat: 26.2884, Lng: -98.3098, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Florence, Illinois 39.6288 -90.6108 matched with DB +City: Florence, state: Alabama, Lat: 34.8303, Lng: -87.6655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Illinois 39.6288 -90.6108 matched with DB +City: Florence, state: Kentucky, Lat: 38.9899, Lng: -84.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Illinois 39.6288 -90.6108 matched with DB +City: Florence, state: South Carolina, Lat: 34.178, Lng: -79.7898, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Illinois 39.6288 -90.6108 matched with DB +City: Florence, state: Oregon, Lat: 43.9916, Lng: -124.1063, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Illinois 39.6288 -90.6108 matched with DB +City: Florence, state: Arizona, Lat: 33.059, Lng: -111.4209, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Florence, Illinois 39.6288 -90.6108 matched with DB +City: Florence, state: New Jersey, Lat: 40.0977, Lng: -74.7886, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Concord, Kentucky 38.6876 -83.4915 matched with DB +City: Concord, state: New Hampshire, Lat: 43.2305, Lng: -71.5595, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Kentucky 38.6876 -83.4915 matched with DB +City: Concord, state: Missouri, Lat: 38.5117, Lng: -90.3574, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Kentucky 38.6876 -83.4915 matched with DB +City: Concord, state: North Carolina, Lat: 35.3933, Lng: -80.6369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Kentucky 38.6876 -83.4915 matched with DB +City: Concord, state: California, Lat: 37.9722, Lng: -122.0016, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Kentucky 38.6876 -83.4915 matched with DB +City: Concord, state: Massachusetts, Lat: 42.462, Lng: -71.3639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Concord, Kentucky 38.6876 -83.4915 matched with DB +City: Concord, state: Pennsylvania, Lat: 39.8741, Lng: -75.5135, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sumner, Oklahoma 36.3182 -97.1179 matched with DB +City: Sumner, state: Washington, Lat: 47.2189, Lng: -122.2338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Huntley, Wyoming 41.9316 -104.1439 matched with DB +City: Huntley, state: Illinois, Lat: 42.1599, Lng: -88.433, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Martinez, Texas 26.4221 -98.7529 matched with DB +City: Martinez, state: Georgia, Lat: 33.5209, Lng: -82.0985, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Martinez, Texas 26.4221 -98.7529 matched with DB +City: Martinez, state: California, Lat: 37.9985, Lng: -122.1161, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roseville, Iowa 43.0253 -92.8082 matched with DB +City: Roseville, state: Michigan, Lat: 42.5074, Lng: -82.9369, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Iowa 43.0253 -92.8082 matched with DB +City: Roseville, state: Minnesota, Lat: 45.0155, Lng: -93.1545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roseville, Iowa 43.0253 -92.8082 matched with DB +City: Roseville, state: California, Lat: 38.7703, Lng: -121.3196, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Brownsville, Maryland 39.3782 -77.6615 matched with DB +City: Brownsville, state: Tennessee, Lat: 35.589, Lng: -89.2578, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Maryland 39.3782 -77.6615 matched with DB +City: Brownsville, state: Texas, Lat: 25.9975, Lng: -97.458, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Brownsville, Maryland 39.3782 -77.6615 matched with DB +City: Brownsville, state: Florida, Lat: 25.8216, Lng: -80.2417, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bartlett, Iowa 40.8853 -95.7947 matched with DB +City: Bartlett, state: Illinois, Lat: 41.9804, Lng: -88.2071, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bartlett, Iowa 40.8853 -95.7947 matched with DB +City: Bartlett, state: Tennessee, Lat: 35.2337, Lng: -89.8195, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Waterford, Mississippi 34.6494 -89.4575 matched with DB +City: Waterford, state: California, Lat: 37.6429, Lng: -120.7553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Waterford, Mississippi 34.6494 -89.4575 matched with DB +City: Waterford, state: New Jersey, Lat: 39.7415, Lng: -74.8207, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garland, Kansas 37.7305 -94.6244 matched with DB +City: Garland, state: Texas, Lat: 32.91, Lng: -96.6304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jefferson, Oklahoma 36.7203 -97.7909 matched with DB +City: Jefferson, state: Louisiana, Lat: 29.9609, Lng: -90.1554, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Oklahoma 36.7203 -97.7909 matched with DB +City: Jefferson, state: Georgia, Lat: 34.1373, Lng: -83.6021, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jefferson, Oklahoma 36.7203 -97.7909 matched with DB +City: Jefferson, state: New Jersey, Lat: 41.0003, Lng: -74.5531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: Maine, Lat: 44.0851, Lng: -70.2492, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: New York, Lat: 42.9338, Lng: -76.5685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: Indiana, Lat: 41.3666, Lng: -85.0559, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: California, Lat: 38.895, Lng: -121.0777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: Alabama, Lat: 32.6087, Lng: -85.4903, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: Washington, Lat: 47.3039, Lng: -122.2108, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Auburn, North Dakota 48.5066 -97.4368 matched with DB +City: Auburn, state: Massachusetts, Lat: 42.1972, Lng: -71.8453, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lynn, Colorado 37.4219 -104.6431 matched with DB +City: Lynn, state: Massachusetts, Lat: 42.4781, Lng: -70.9664, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Raleigh, North Dakota 46.3572 -101.3054 matched with DB +City: Raleigh, state: North Carolina, Lat: 35.8324, Lng: -78.6429, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Plainview, Iowa 41.6672 -90.7801 matched with DB +City: Plainview, state: New York, Lat: 40.7832, Lng: -73.4732, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Plainview, Iowa 41.6672 -90.7801 matched with DB +City: Plainview, state: Texas, Lat: 34.1911, Lng: -101.7235, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Live Oak, South Carolina 34.0560 -78.9397 matched with DB +City: Live Oak, state: Texas, Lat: 29.5545, Lng: -98.3404, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Live Oak, South Carolina 34.0560 -78.9397 matched with DB +City: Live Oak, state: California, Lat: 36.986, Lng: -121.9804, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sherwood, Tennessee 35.0749 -85.9259 matched with DB +City: Sherwood, state: Arkansas, Lat: 34.8507, Lng: -92.2029, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Sherwood, Tennessee 35.0749 -85.9259 matched with DB +City: Sherwood, state: Oregon, Lat: 45.3594, Lng: -122.8427, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bloomfield, Montana 47.4123 -104.9190 matched with DB +City: Bloomfield, state: New Jersey, Lat: 40.8098, Lng: -74.1869, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danvers, Montana 47.2283 -109.7130 matched with DB +City: Danvers, state: Massachusetts, Lat: 42.574, Lng: -70.9494, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ypsilanti, North Dakota 46.7834 -98.5610 matched with DB +City: Ypsilanti, state: Michigan, Lat: 42.244, Lng: -83.6208, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Montana 47.3844 -111.1432 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Montana 47.3844 -111.1432 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jennings, Maryland 39.6487 -79.1835 matched with DB +City: Jennings, state: Missouri, Lat: 38.7231, Lng: -90.2644, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jennings, Maryland 39.6487 -79.1835 matched with DB +City: Jennings, state: Louisiana, Lat: 30.2233, Lng: -92.6582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Bridgeport, Kansas 38.6272 -97.6140 matched with DB +City: Bridgeport, state: Connecticut, Lat: 41.1918, Lng: -73.1954, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Bridgeport, Kansas 38.6272 -97.6140 matched with DB +City: Bridgeport, state: West Virginia, Lat: 39.3036, Lng: -80.2478, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lindsay, Montana 47.2249 -105.1528 matched with DB +City: Lindsay, state: California, Lat: 36.2082, Lng: -119.0897, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vail, Pennsylvania 40.7011 -78.2139 matched with DB +City: Vail, state: Arizona, Lat: 32.0217, Lng: -110.6937, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Santa Monica, Texas 26.3654 -97.5900 matched with DB +City: Santa Monica, state: California, Lat: 34.0235, Lng: -118.481, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Granger, Missouri 40.4670 -91.9736 matched with DB +City: Granger, state: Indiana, Lat: 41.7374, Lng: -86.1348, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arvada, Wyoming 44.6621 -106.1418 matched with DB +City: Arvada, state: Colorado, Lat: 39.832, Lng: -105.151, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Butler, South Dakota 45.2620 -97.7117 matched with DB +City: Butler, state: Pennsylvania, Lat: 40.8616, Lng: -79.8962, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Butler, South Dakota 45.2620 -97.7117 matched with DB +City: Butler, state: Pennsylvania, Lat: 41.0358, Lng: -75.9798, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Salmon Creek, California 38.3462 -123.0595 matched with DB +City: Salmon Creek, state: Washington, Lat: 45.7099, Lng: -122.6632, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Colorado 39.7802 -105.0579 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Colorado 39.7802 -105.0579 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Colorado 39.7802 -105.0579 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Harrison, South Dakota 43.4310 -98.5268 matched with DB +City: Harrison, state: New Jersey, Lat: 40.7431, Lng: -74.1531, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, South Dakota 43.4310 -98.5268 matched with DB +City: Harrison, state: New York, Lat: 41.0236, Lng: -73.7193, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, South Dakota 43.4310 -98.5268 matched with DB +City: Harrison, state: Ohio, Lat: 39.2584, Lng: -84.7868, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, South Dakota 43.4310 -98.5268 matched with DB +City: Harrison, state: Arkansas, Lat: 36.2438, Lng: -93.1198, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, South Dakota 43.4310 -98.5268 matched with DB +City: Harrison, state: Wisconsin, Lat: 44.1935, Lng: -88.2941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Harrison, South Dakota 43.4310 -98.5268 matched with DB +City: Harrison, state: Pennsylvania, Lat: 40.6374, Lng: -79.7173, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: St. Charles, South Dakota 43.0881 -99.0949 matched with DB +City: St. Charles, state: Illinois, Lat: 41.9193, Lng: -88.3109, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: St. Charles, South Dakota 43.0881 -99.0949 matched with DB +City: St. Charles, state: Missouri, Lat: 38.7954, Lng: -90.5157, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roxbury, Kansas 38.5511 -97.4274 matched with DB +City: Roxbury, state: New Jersey, Lat: 40.8822, Lng: -74.6523, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dudley, South Dakota 43.3082 -103.8192 matched with DB +City: Dudley, state: Massachusetts, Lat: 42.055, Lng: -71.9352, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Loveland, Oklahoma 34.3046 -98.7708 matched with DB +City: Loveland, state: Ohio, Lat: 39.2677, Lng: -84.2733, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Loveland, Oklahoma 34.3046 -98.7708 matched with DB +City: Loveland, state: Colorado, Lat: 40.4166, Lng: -105.0623, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Princeton, Arkansas 33.9775 -92.6241 matched with DB +City: Princeton, state: New Jersey, Lat: 40.3562, Lng: -74.6693, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Arkansas 33.9775 -92.6241 matched with DB +City: Princeton, state: Florida, Lat: 25.5396, Lng: -80.3971, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Princeton, Arkansas 33.9775 -92.6241 matched with DB +City: Princeton, state: Texas, Lat: 33.1778, Lng: -96.5044, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Jacksonville, Iowa 41.6452 -95.1515 matched with DB +City: Jacksonville, state: Alabama, Lat: 33.8088, Lng: -85.7545, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Iowa 41.6452 -95.1515 matched with DB +City: Jacksonville, state: Illinois, Lat: 39.7292, Lng: -90.2317, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Iowa 41.6452 -95.1515 matched with DB +City: Jacksonville, state: Arkansas, Lat: 34.8807, Lng: -92.1304, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Iowa 41.6452 -95.1515 matched with DB +City: Jacksonville, state: North Carolina, Lat: 34.7289, Lng: -77.3941, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Iowa 41.6452 -95.1515 matched with DB +City: Jacksonville, state: Florida, Lat: 30.3322, Lng: -81.6749, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Jacksonville, Iowa 41.6452 -95.1515 matched with DB +City: Jacksonville, state: Texas, Lat: 31.9642, Lng: -95.2617, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Gilbert, Arkansas 35.9905 -92.7166 matched with DB +City: Gilbert, state: Arizona, Lat: 33.31, Lng: -111.7463, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Berkley, Iowa 41.9465 -94.1136 matched with DB +City: Berkley, state: Michigan, Lat: 42.4986, Lng: -83.1853, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Berkley, Iowa 41.9465 -94.1136 matched with DB +City: Berkley, state: Colorado, Lat: 39.8045, Lng: -105.0281, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Corning, Missouri 40.2486 -95.4545 matched with DB +City: Corning, state: New York, Lat: 42.147, Lng: -77.0561, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Arlington, Wyoming 41.6053 -106.1997 matched with DB +City: Arlington, state: Virginia, Lat: 38.8786, Lng: -77.1011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wyoming 41.6053 -106.1997 matched with DB +City: Arlington, state: Tennessee, Lat: 35.2594, Lng: -89.668, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wyoming 41.6053 -106.1997 matched with DB +City: Arlington, state: Washington, Lat: 48.1701, Lng: -122.1442, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wyoming 41.6053 -106.1997 matched with DB +City: Arlington, state: Texas, Lat: 32.6998, Lng: -97.125, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Arlington, Wyoming 41.6053 -106.1997 matched with DB +City: Arlington, state: Massachusetts, Lat: 42.4187, Lng: -71.1639, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fostoria, Pennsylvania 40.6191 -78.3198 matched with DB +City: Fostoria, state: Ohio, Lat: 41.16, Lng: -83.4121, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Middleburg, Maryland 39.7177 -77.7239 matched with DB +City: Middleburg, state: Florida, Lat: 30.0502, Lng: -81.9011, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Dublin, Mississippi 34.0727 -90.4892 matched with DB +City: Dublin, state: Ohio, Lat: 40.1112, Lng: -83.1454, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Mississippi 34.0727 -90.4892 matched with DB +City: Dublin, state: Georgia, Lat: 32.536, Lng: -82.928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Dublin, Mississippi 34.0727 -90.4892 matched with DB +City: Dublin, state: California, Lat: 37.7161, Lng: -121.8963, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Barton, North Dakota 48.5093 -100.1734 matched with DB +City: Barton, state: New York, Lat: 42.0812, Lng: -76.4982, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Blanchard, North Dakota 47.3432 -97.2228 matched with DB +City: Blanchard, state: Oklahoma, Lat: 35.1524, Lng: -97.6602, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Paradise, Missouri 39.4289 -94.5127 matched with DB +City: Paradise, state: Nevada, Lat: 36.0872, Lng: -115.1355, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Freeport, California 38.4636 -121.5022 matched with DB +City: Freeport, state: New York, Lat: 40.6515, Lng: -73.585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, California 38.4636 -121.5022 matched with DB +City: Freeport, state: Illinois, Lat: 42.2891, Lng: -89.6346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, California 38.4636 -121.5022 matched with DB +City: Freeport, state: Texas, Lat: 28.9453, Lng: -95.3601, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Freeport, California 38.4636 -121.5022 matched with DB +City: Freeport, state: Maine, Lat: 43.8556, Lng: -70.1009, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ionia, Kansas 39.6626 -98.3439 matched with DB +City: Ionia, state: Michigan, Lat: 42.9773, Lng: -85.0727, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mountain View, New Mexico 32.2288 -107.7462 matched with DB +City: Mountain View, state: California, Lat: 37.4001, Lng: -122.0796, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Vernon, Colorado 39.9399 -102.3073 matched with DB +City: Vernon, state: Texas, Lat: 34.1479, Lng: -99.3, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Vernon, Colorado 39.9399 -102.3073 matched with DB +City: Vernon, state: New Jersey, Lat: 41.1973, Lng: -74.4857, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fremont, Missouri 36.9522 -91.1623 matched with DB +City: Fremont, state: Ohio, Lat: 41.3535, Lng: -83.1147, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Missouri 36.9522 -91.1623 matched with DB +City: Fremont, state: Nebraska, Lat: 41.4395, Lng: -96.4873, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fremont, Missouri 36.9522 -91.1623 matched with DB +City: Fremont, state: California, Lat: 37.5265, Lng: -121.9843, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lakeside, Missouri 38.2043 -92.6221 matched with DB +City: Lakeside, state: Virginia, Lat: 37.6132, Lng: -77.4768, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Missouri 38.2043 -92.6221 matched with DB +City: Lakeside, state: California, Lat: 32.856, Lng: -116.904, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Lakeside, Missouri 38.2043 -92.6221 matched with DB +City: Lakeside, state: Florida, Lat: 30.1356, Lng: -81.7674, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Provo, South Dakota 43.1937 -103.8329 matched with DB +City: Provo, state: Utah, Lat: 40.2457, Lng: -111.6457, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Arkansas 35.1157 -93.1714 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Arkansas 35.1157 -93.1714 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ashburn, Missouri 39.5458 -91.1720 matched with DB +City: Ashburn, state: Virginia, Lat: 39.0277, Lng: -77.4714, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Clarksville, Oklahoma 35.8240 -95.5141 matched with DB +City: Clarksville, state: Indiana, Lat: 38.322, Lng: -85.7673, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Oklahoma 35.8240 -95.5141 matched with DB +City: Clarksville, state: Tennessee, Lat: 36.5692, Lng: -87.3413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Clarksville, Oklahoma 35.8240 -95.5141 matched with DB +City: Clarksville, state: Arkansas, Lat: 35.457, Lng: -93.4803, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Mustang, Texas 32.0135 -96.4303 matched with DB +City: Mustang, state: Oklahoma, Lat: 35.3917, Lng: -97.7246, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Porterville, Mississippi 32.6855 -88.4714 matched with DB +City: Porterville, state: California, Lat: 36.0643, Lng: -119.0338, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roswell, South Dakota 44.0060 -97.6975 matched with DB +City: Roswell, state: Georgia, Lat: 34.0391, Lng: -84.3513, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Roswell, South Dakota 44.0060 -97.6975 matched with DB +City: Roswell, state: New Mexico, Lat: 33.373, Lng: -104.5294, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Templeton, Indiana 40.5134 -87.2074 matched with DB +City: Templeton, state: California, Lat: 35.556, Lng: -120.7181, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Richfield, Illinois 39.8127 -91.1146 matched with DB +City: Richfield, state: Wisconsin, Lat: 43.2372, Lng: -88.2413, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Richfield, Illinois 39.8127 -91.1146 matched with DB +City: Richfield, state: Minnesota, Lat: 44.8763, Lng: -93.2829, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ardmore, South Dakota 43.0192 -103.6543 matched with DB +City: Ardmore, state: Pennsylvania, Lat: 40.0033, Lng: -75.2947, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Ardmore, South Dakota 43.0192 -103.6543 matched with DB +City: Ardmore, state: Oklahoma, Lat: 34.1949, Lng: -97.1256, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kent, Indiana 38.7368 -85.5387 matched with DB +City: Kent, state: Ohio, Lat: 41.149, Lng: -81.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Indiana 38.7368 -85.5387 matched with DB +City: Kent, state: Washington, Lat: 47.3887, Lng: -122.2128, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Indiana 38.7368 -85.5387 matched with DB +City: Kent, state: New York, Lat: 41.4735, Lng: -73.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Spring Garden, California 39.9012 -120.7936 matched with DB +City: Spring Garden, state: Pennsylvania, Lat: 39.9454, Lng: -76.7212, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Austin, Mississippi 34.6423 -90.4480 matched with DB +City: Austin, state: Minnesota, Lat: 43.6721, Lng: -92.9784, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Austin, Mississippi 34.6423 -90.4480 matched with DB +City: Austin, state: Texas, Lat: 30.3005, Lng: -97.7522, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ames, Kansas 39.5689 -97.4510 matched with DB +City: Ames, state: Iowa, Lat: 42.0256, Lng: -93.6217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Victoria, Arkansas 35.7574 -90.0602 matched with DB +City: Victoria, state: Minnesota, Lat: 44.8634, Lng: -93.6585, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Victoria, Arkansas 35.7574 -90.0602 matched with DB +City: Victoria, state: Texas, Lat: 28.8287, Lng: -96.9849, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Alma, New Mexico 33.3817 -108.8995 matched with DB +City: Alma, state: Michigan, Lat: 43.3799, Lng: -84.6556, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Thomasville, Missouri 36.7912 -91.5342 matched with DB +City: Thomasville, state: North Carolina, Lat: 35.8813, Lng: -80.0807, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Thomasville, Missouri 36.7912 -91.5342 matched with DB +City: Thomasville, state: Georgia, Lat: 30.8394, Lng: -83.9782, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Danville, Missouri 38.9126 -91.5323 matched with DB +City: Danville, state: Virginia, Lat: 36.5831, Lng: -79.4088, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Missouri 38.9126 -91.5323 matched with DB +City: Danville, state: Illinois, Lat: 40.1426, Lng: -87.6111, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Missouri 38.9126 -91.5323 matched with DB +City: Danville, state: Indiana, Lat: 39.7584, Lng: -86.5019, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Missouri 38.9126 -91.5323 matched with DB +City: Danville, state: Kentucky, Lat: 37.6418, Lng: -84.7777, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Danville, Missouri 38.9126 -91.5323 matched with DB +City: Danville, state: California, Lat: 37.8121, Lng: -121.9698, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Baker, Missouri 36.7733 -89.7616 matched with DB +City: Baker, state: Louisiana, Lat: 30.5832, Lng: -91.1582, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Wells, Kansas 39.1391 -97.5512 matched with DB +City: Wells, state: Maine, Lat: 43.3267, Lng: -70.6336, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Indio, Texas 26.5487 -99.0959 matched with DB +City: Indio, state: California, Lat: 33.7346, Lng: -116.2346, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Sacramento, New Mexico 32.7917 -105.5723 matched with DB +City: Sacramento, state: California, Lat: 38.5677, Lng: -121.4685, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Roosevelt, Arizona 33.6618 -111.1295 matched with DB +City: Roosevelt, state: New York, Lat: 40.6797, Lng: -73.5837, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Chesapeake, Missouri 37.1161 -93.6791 matched with DB +City: Chesapeake, state: Virginia, Lat: 36.6778, Lng: -76.3023, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lamont, Florida 30.3796 -83.8135 matched with DB +City: Lamont, state: California, Lat: 35.2659, Lng: -118.9159, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centerville, Kansas 38.2287 -95.0148 matched with DB +City: Centerville, state: Ohio, Lat: 39.6339, Lng: -84.1449, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centerville, Kansas 38.2287 -95.0148 matched with DB +City: Centerville, state: Utah, Lat: 40.9284, Lng: -111.8848, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Pueblo, New Mexico 35.3273 -105.4354 matched with DB +City: Pueblo, state: Colorado, Lat: 38.2701, Lng: -104.6114, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oneida, Arkansas 34.4605 -90.7867 matched with DB +City: Oneida, state: New York, Lat: 43.0769, Lng: -75.6622, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Kent, Iowa 40.9536 -94.4611 matched with DB +City: Kent, state: Ohio, Lat: 41.149, Lng: -81.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Iowa 40.9536 -94.4611 matched with DB +City: Kent, state: Washington, Lat: 47.3887, Lng: -122.2128, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Kent, Iowa 40.9536 -94.4611 matched with DB +City: Kent, state: New York, Lat: 41.4735, Lng: -73.7319, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Milford, California 40.1634 -120.3686 matched with DB +City: Milford, state: Delaware, Lat: 38.9091, Lng: -75.4227, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, California 40.1634 -120.3686 matched with DB +City: Milford, state: Massachusetts, Lat: 42.1565, Lng: -71.5188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, California 40.1634 -120.3686 matched with DB +City: Milford, state: New Hampshire, Lat: 42.8178, Lng: -71.6736, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Milford, California 40.1634 -120.3686 matched with DB +City: Milford, state: Pennsylvania, Lat: 40.4291, Lng: -75.4153, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Silver City, California 36.4663 -118.6495 matched with DB +City: Silver City, state: New Mexico, Lat: 32.7783, Lng: -108.2699, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Laredo, Montana 48.4303 -109.8860 matched with DB +City: Laredo, state: Texas, Lat: 27.5625, Lng: -99.4874, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Oakville, California 38.4383 -122.4067 matched with DB +City: Oakville, state: Connecticut, Lat: 41.5893, Lng: -73.0905, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Oakville, California 38.4383 -122.4067 matched with DB +City: Oakville, state: Missouri, Lat: 38.4479, Lng: -90.3199, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Burton, Nebraska 42.9119 -99.5918 matched with DB +City: Burton, state: Michigan, Lat: 42.9974, Lng: -83.6175, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Summerfield, Texas 34.7398 -102.5096 matched with DB +City: Summerfield, state: North Carolina, Lat: 36.1973, Lng: -79.8997, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Summerfield, Texas 34.7398 -102.5096 matched with DB +City: Summerfield, state: Maryland, Lat: 38.9042, Lng: -76.8678, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Greer, Arizona 34.0054 -109.4611 matched with DB +City: Greer, state: South Carolina, Lat: 34.933, Lng: -82.2313, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Ames, Nebraska 41.4491 -96.6263 matched with DB +City: Ames, state: Iowa, Lat: 42.0256, Lng: -93.6217, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Rockville, Alabama 31.4058 -87.8442 matched with DB +City: Rockville, state: Maryland, Lat: 39.0834, Lng: -77.1553, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Homestead, New Mexico 34.1488 -107.8820 matched with DB +City: Homestead, state: Florida, Lat: 25.4665, Lng: -80.4472, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: San Fernando, Texas 26.4033 -98.8351 matched with DB +City: San Fernando, state: California, Lat: 34.2886, Lng: -118.4362, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Whittier, North Carolina 35.4337 -83.3564 matched with DB +City: Whittier, state: California, Lat: 33.9678, Lng: -118.0188, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hollywood, Missouri 36.0515 -90.1860 matched with DB +City: Hollywood, state: Florida, Lat: 26.0293, Lng: -80.1679, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Garfield, Colorado 38.5493 -106.2893 matched with DB +City: Garfield, state: New Jersey, Lat: 40.8791, Lng: -74.1085, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Lake City, Kansas 37.3569 -98.8279 matched with DB +City: Lake City, state: Florida, Lat: 30.1901, Lng: -82.6471, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Centralia, Pennsylvania 40.8047 -76.3439 matched with DB +City: Centralia, state: Illinois, Lat: 38.5224, Lng: -89.1232, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Centralia, Pennsylvania 40.8047 -76.3439 matched with DB +City: Centralia, state: Washington, Lat: 46.7223, Lng: -122.9696, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Herkimer, Kansas 39.8924 -96.7090 matched with DB +City: Herkimer, state: New York, Lat: 43.061, Lng: -74.9894, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Antelope, Montana 48.6897 -104.4540 matched with DB +City: Antelope, state: California, Lat: 38.7153, Lng: -121.361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: New Jersey, Lat: 40.8182, Lng: -74.0022, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: Tennessee, Lat: 35.9815, Lng: -87.1291, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: Oregon, Lat: 45.5469, Lng: -122.439, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: Texas, Lat: 33.1399, Lng: -96.6117, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: California, Lat: 37.6758, Lng: -122.0473, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: Pennsylvania, Lat: 42.0261, Lng: -80.2361, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - +CSV City: Fairview, Maryland 39.7110 -77.8406 matched with DB +City: Fairview, state: Pennsylvania, Lat: 40.1735, Lng: -76.8655, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Hartland, California 36.6539 -118.9588 matched with DB +City: Hartland, state: Wisconsin, Lat: 43.1029, Lng: -88.3396, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= + +CSV City: Howard, Georgia 32.5982 -84.3786 matched with DB +City: Howard, state: Wisconsin, Lat: 44.5703, Lng: -88.0928, Country: USA (Matches - state: false lat: false lng: false) +- - - - - - - - - - - - - - - - - - - - - - - - + + + ================= END CITY MATCH ================= +